| 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("//chrome/process_version_rc_template.gni") | 8 import("//chrome/process_version_rc_template.gni") |
| 9 import("//chrome/test/mini_installer/mini_installer_test.gni") | 9 import("//chrome/test/mini_installer/mini_installer_test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "configuration_test.cc", | 62 "configuration_test.cc", |
| 63 "decompress_test.cc", | 63 "decompress_test.cc", |
| 64 "mini_string_test.cc", | 64 "mini_string_test.cc", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 public_deps = [ | 67 public_deps = [ |
| 68 ":lib", | 68 ":lib", |
| 69 ] | 69 ] |
| 70 deps = [ | 70 deps = [ |
| 71 "//base", | 71 "//base", |
| 72 "//base/test:test_support", |
| 72 "//testing/gtest", | 73 "//testing/gtest", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 | 76 |
| 76 # The runtime deps are used to tell create_installer_archive what component | 77 # The runtime deps are used to tell create_installer_archive what component |
| 77 # DLLs need to be packaged in a component build. | 78 # DLLs need to be packaged in a component build. |
| 78 chrome_runtime_deps = "$root_gen_dir/chrome_component.runtime_deps" | 79 chrome_runtime_deps = "$root_gen_dir/chrome_component.runtime_deps" |
| 79 setup_runtime_deps = "$root_gen_dir/setup.runtime_deps" | 80 setup_runtime_deps = "$root_gen_dir/setup.runtime_deps" |
| 80 | 81 |
| 81 group("chrome_runtime_deps") { | 82 group("chrome_runtime_deps") { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 args = [ | 287 args = [ |
| 287 "--out", | 288 "--out", |
| 288 "$target_name.exe", | 289 "$target_name.exe", |
| 289 ] | 290 ] |
| 290 deps = [ | 291 deps = [ |
| 291 ":mini_installer", | 292 ":mini_installer", |
| 292 "//chrome/installer/test:alternate_version_generator", | 293 "//chrome/installer/test:alternate_version_generator", |
| 293 ] | 294 ] |
| 294 } | 295 } |
| 295 } | 296 } |
| OLD | NEW |