| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  105       # Need to depend on the generated strings target since files here |  105       # Need to depend on the generated strings target since files here | 
|  106       # depend on the generated header, but only depend on the ":strings" |  106       # depend on the generated header, but only depend on the ":strings" | 
|  107       # target (which actually compiles and causes the generated code to be |  107       # target (which actually compiles and causes the generated code to be | 
|  108       # linked) from the ":util" target. |  108       # linked) from the ":util" target. | 
|  109       ":generate_strings", |  109       ":generate_strings", | 
|  110       "//base/third_party/dynamic_annotations", |  110       "//base/third_party/dynamic_annotations", | 
|  111       "//components/metrics", |  111       "//components/metrics", | 
|  112       "//courgette:courgette_lib", |  112       "//courgette:courgette_lib", | 
|  113       "//crypto", |  113       "//crypto", | 
|  114       "//third_party/bspatch", |  114       "//third_party/bspatch", | 
 |  115       "//third_party/crashpad/crashpad/client", | 
|  115       "//third_party/icu", |  116       "//third_party/icu", | 
|  116       "//third_party/lzma_sdk", |  117       "//third_party/lzma_sdk", | 
|  117     ] |  118     ] | 
|  118  |  119  | 
|  119     configs += [ |  120     configs += [ | 
|  120       "//build/config:precompiled_headers", |  121       "//build/config:precompiled_headers", | 
|  121  |  122  | 
|  122       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |  123       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 
|  123       "//build/config/compiler:no_size_t_to_int_warning", |  124       "//build/config/compiler:no_size_t_to_int_warning", | 
|  124     ] |  125     ] | 
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  335       "//chrome/installer/test:alternate_version_generator_lib", |  336       "//chrome/installer/test:alternate_version_generator_lib", | 
|  336       "//components/variations", |  337       "//components/variations", | 
|  337       "//content/public/common", |  338       "//content/public/common", | 
|  338       "//testing/gmock", |  339       "//testing/gmock", | 
|  339       "//testing/gtest", |  340       "//testing/gtest", | 
|  340     ] |  341     ] | 
|  341  |  342  | 
|  342     # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
     er.exe.manifest |  343     # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
     er.exe.manifest | 
|  343   } |  344   } | 
|  344 }  # is_win |  345 }  # is_win | 
| OLD | NEW |