| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 # crbug.com/577698 | 114 # crbug.com/577698 |
| 115 "//components/startup_metric_utils/common", | 115 "//components/startup_metric_utils/common", |
| 116 "//courgette:courgette_lib", | 116 "//courgette:courgette_lib", |
| 117 "//crypto", | 117 "//crypto", |
| 118 "//third_party/bspatch", | 118 "//third_party/bspatch", |
| 119 "//third_party/crashpad/crashpad/client", | 119 "//third_party/crashpad/crashpad/client", |
| 120 "//third_party/icu", | 120 "//third_party/icu", |
| 121 "//third_party/lzma_sdk", | 121 "//third_party/lzma_sdk", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 libs = [ |
| 125 "urlmon.lib", |
| 126 "wbemuuid.lib", |
| 127 "wtsapi32.lib", |
| 128 ] |
| 129 |
| 124 configs += [ | 130 configs += [ |
| 125 "//build/config:precompiled_headers", | 131 "//build/config:precompiled_headers", |
| 126 | 132 |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 "//build/config/compiler:no_size_t_to_int_warning", | 134 "//build/config/compiler:no_size_t_to_int_warning", |
| 129 ] | 135 ] |
| 130 | 136 |
| 131 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN | 137 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN |
| 132 sources += [ | 138 sources += [ |
| 133 "advanced_firewall_manager_win.cc", | 139 "advanced_firewall_manager_win.cc", |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 ] | 349 ] |
| 344 | 350 |
| 345 data = [ | 351 data = [ |
| 346 "//chrome/test/data/extensions/", | 352 "//chrome/test/data/extensions/", |
| 347 "//chrome/test/data/installer/", | 353 "//chrome/test/data/installer/", |
| 348 ] | 354 ] |
| 349 | 355 |
| 350 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 356 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 351 } | 357 } |
| 352 } # is_win | 358 } # is_win |
| OLD | NEW |