| 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 ] | 95 ] |
| 96 | 96 |
| 97 deps += [ | 97 deps += [ |
| 98 # Need to depend on the generated strings target since files here | 98 # Need to depend on the generated strings target since files here |
| 99 # depend on the generated header, but only depend on the ":strings" | 99 # depend on the generated header, but only depend on the ":strings" |
| 100 # target (which actually compiles and causes the generated code to be | 100 # target (which actually compiles and causes the generated code to be |
| 101 # linked) from the ":util" target. | 101 # linked) from the ":util" target. |
| 102 ":generate_strings", | 102 ":generate_strings", |
| 103 "//base/third_party/dynamic_annotations", | 103 "//base/third_party/dynamic_annotations", |
| 104 "//chrome/install_static:install_static_util", | 104 "//chrome/install_static:install_static_util", |
| 105 "//components/base32", | |
| 106 "//components/metrics", | 105 "//components/metrics", |
| 107 "//courgette:courgette_lib", | 106 "//courgette:courgette_lib", |
| 108 "//crypto", | 107 "//crypto", |
| 109 "//third_party/bspatch", | 108 "//third_party/bspatch", |
| 110 "//third_party/crashpad/crashpad/client", | 109 "//third_party/crashpad/crashpad/client", |
| 111 "//third_party/icu", | 110 "//third_party/icu", |
| 112 "//third_party/lzma_sdk", | 111 "//third_party/lzma_sdk", |
| 113 ] | 112 ] |
| 114 | 113 |
| 115 libs = [ | 114 libs = [ |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 "//testing/gmock", | 349 "//testing/gmock", |
| 351 "//testing/gtest", | 350 "//testing/gtest", |
| 352 ] | 351 ] |
| 353 | 352 |
| 354 data = [ | 353 data = [ |
| 355 "//chrome/test/data/extensions/", | 354 "//chrome/test/data/extensions/", |
| 356 "//chrome/test/data/installer/", | 355 "//chrome/test/data/installer/", |
| 357 ] | 356 ] |
| 358 } | 357 } |
| 359 } # is_win | 358 } # is_win |
| OLD | NEW |