| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/visual_studio_version.gni") | |
| 9 import("//chrome/process_version_rc_template.gni") | 8 import("//chrome/process_version_rc_template.gni") |
| 10 import("//chrome/test/mini_installer/mini_installer_test.gni") | 9 import("//chrome/test/mini_installer/mini_installer_test.gni") |
| 11 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| 12 import("//ui/base/ui_features.gni") | 11 import("//ui/base/ui_features.gni") |
| 13 import("//v8/gni/v8.gni") | 12 import("//v8/gni/v8.gni") |
| 14 | 13 |
| 15 config("mini_installer_compiler_flags") { | 14 config("mini_installer_compiler_flags") { |
| 16 # Disable buffer security checking. | 15 # Disable buffer security checking. |
| 17 cflags = [ "/GS-" ] | 16 cflags = [ "/GS-" ] |
| 18 } | 17 } |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 args = [ | 286 args = [ |
| 288 "--out", | 287 "--out", |
| 289 "$target_name.exe", | 288 "$target_name.exe", |
| 290 ] | 289 ] |
| 291 deps = [ | 290 deps = [ |
| 292 ":mini_installer", | 291 ":mini_installer", |
| 293 "//chrome/installer/test:alternate_version_generator", | 292 "//chrome/installer/test:alternate_version_generator", |
| 294 ] | 293 ] |
| 295 } | 294 } |
| 296 } | 295 } |
| OLD | NEW |