| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ] | 97 ] |
| 98 | 98 |
| 99 deps += [ | 99 deps += [ |
| 100 # Need to depend on the generated strings target since files here | 100 # Need to depend on the generated strings target since files here |
| 101 # depend on the generated header, but only depend on the ":strings" | 101 # depend on the generated header, but only depend on the ":strings" |
| 102 # target (which actually compiles and causes the generated code to be | 102 # target (which actually compiles and causes the generated code to be |
| 103 # linked) from the ":util" target. | 103 # linked) from the ":util" target. |
| 104 ":generate_strings", | 104 ":generate_strings", |
| 105 "//base/third_party/dynamic_annotations", | 105 "//base/third_party/dynamic_annotations", |
| 106 "//chrome/install_static:install_static_util", | 106 "//chrome/install_static:install_static_util", |
| 107 "//components/base32", |
| 107 "//components/metrics", | 108 "//components/metrics", |
| 108 | 109 |
| 109 # TODO(fdoray): Remove this once the PreRead field trial has expired. | 110 # TODO(fdoray): Remove this once the PreRead field trial has expired. |
| 110 # crbug.com/577698 | 111 # crbug.com/577698 |
| 111 "//components/startup_metric_utils/common", | 112 "//components/startup_metric_utils/common", |
| 112 "//courgette:courgette_lib", | 113 "//courgette:courgette_lib", |
| 113 "//crypto", | 114 "//crypto", |
| 114 "//third_party/bspatch", | 115 "//third_party/bspatch", |
| 115 "//third_party/crashpad/crashpad/client", | 116 "//third_party/crashpad/crashpad/client", |
| 116 "//third_party/icu", | 117 "//third_party/icu", |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "//testing/gmock", | 348 "//testing/gmock", |
| 348 "//testing/gtest", | 349 "//testing/gtest", |
| 349 ] | 350 ] |
| 350 | 351 |
| 351 data = [ | 352 data = [ |
| 352 "//chrome/test/data/extensions/", | 353 "//chrome/test/data/extensions/", |
| 353 "//chrome/test/data/installer/", | 354 "//chrome/test/data/installer/", |
| 354 ] | 355 ] |
| 355 } | 356 } |
| 356 } # is_win | 357 } # is_win |
| OLD | NEW |