| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 # This file deliberately has no default "util" target so dependants have to | 8 # This file deliberately has no default "util" target so dependants have to |
| 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random | 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random |
| 10 # code that ends up getting linked into chrome proper should depend on the | 10 # code that ends up getting linked into chrome proper should depend on the |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 # depend on the generated header, but only depend on the ":strings" | 95 # depend on the generated header, but only depend on the ":strings" |
| 96 # target (which actually compiles and causes the generated code to be | 96 # target (which actually compiles and causes the generated code to be |
| 97 # linked) from the ":util" target. | 97 # linked) from the ":util" target. |
| 98 ":generate_strings", | 98 ":generate_strings", |
| 99 "//base/third_party/dynamic_annotations", | 99 "//base/third_party/dynamic_annotations", |
| 100 "//chrome/install_static:install_static_util", | 100 "//chrome/install_static:install_static_util", |
| 101 "//components/base32", | 101 "//components/base32", |
| 102 "//components/metrics", | 102 "//components/metrics", |
| 103 "//courgette:courgette_lib", | 103 "//courgette:courgette_lib", |
| 104 "//crypto", | 104 "//crypto", |
| 105 "//rlz/features", |
| 105 "//third_party/bspatch", | 106 "//third_party/bspatch", |
| 106 "//third_party/crashpad/crashpad/client", | 107 "//third_party/crashpad/crashpad/client", |
| 107 "//third_party/icu", | 108 "//third_party/icu", |
| 108 "//third_party/lzma_sdk", | 109 "//third_party/lzma_sdk", |
| 109 ] | 110 ] |
| 110 | 111 |
| 111 libs = [ | 112 libs = [ |
| 112 "urlmon.lib", | 113 "urlmon.lib", |
| 113 "wbemuuid.lib", | 114 "wbemuuid.lib", |
| 114 "wtsapi32.lib", | 115 "wtsapi32.lib", |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 ":with_rc_strings", | 330 ":with_rc_strings", |
| 330 "//base", | 331 "//base", |
| 331 "//base:i18n", | 332 "//base:i18n", |
| 332 "//base/test:test_support", | 333 "//base/test:test_support", |
| 333 "//chrome:other_version", | 334 "//chrome:other_version", |
| 334 "//chrome/install_static:install_static_util", | 335 "//chrome/install_static:install_static_util", |
| 335 "//chrome/install_static/test:test_support", | 336 "//chrome/install_static/test:test_support", |
| 336 "//chrome/installer/setup:lib", | 337 "//chrome/installer/setup:lib", |
| 337 "//chrome/installer/test:alternate_version_generator_lib", | 338 "//chrome/installer/test:alternate_version_generator_lib", |
| 338 "//components/variations", | 339 "//components/variations", |
| 340 "//rlz/features", |
| 339 "//testing/gmock", | 341 "//testing/gmock", |
| 340 "//testing/gtest", | 342 "//testing/gtest", |
| 341 ] | 343 ] |
| 342 | 344 |
| 343 data = [ | 345 data = [ |
| 344 "//chrome/test/data/extensions/", | 346 "//chrome/test/data/extensions/", |
| 345 "//chrome/test/data/installer/", | 347 "//chrome/test/data/installer/", |
| 346 ] | 348 ] |
| 347 } | 349 } |
| 348 } # is_win | 350 } # is_win |
| OLD | NEW |