| 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 static_library("util") { | 5 static_library("util") { |
| 6 deps = [ | 6 deps = [ |
| 7 "//base", | 7 "//base", |
| 8 "//chrome:resources", | 8 "//chrome:resources", |
| 9 "//chrome:strings", | 9 "//chrome:strings", |
| 10 ] | 10 ] |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "//components/metrics", | 59 "//components/metrics", |
| 60 "//courgette:courgette_lib", | 60 "//courgette:courgette_lib", |
| 61 "//crypto", | 61 "//crypto", |
| 62 "//third_party/bspatch", | 62 "//third_party/bspatch", |
| 63 "//third_party/icu", | 63 "//third_party/icu", |
| 64 "//third_party/lzma_sdk", | 64 "//third_party/lzma_sdk", |
| 65 ] | 65 ] |
| 66 include_dirs = [ "$root_gen_dir/installer_util_strings" ] | 66 include_dirs = [ "$root_gen_dir/installer_util_strings" ] |
| 67 | 67 |
| 68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 68 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 69 cflags = [ "/wd4267" ] | 69 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 70 | 70 |
| 71 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN | 71 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN |
| 72 sources += [ | 72 sources += [ |
| 73 "advanced_firewall_manager_win.cc", | 73 "advanced_firewall_manager_win.cc", |
| 74 "advanced_firewall_manager_win.h", | 74 "advanced_firewall_manager_win.h", |
| 75 "app_command.cc", | 75 "app_command.cc", |
| 76 "app_command.h", | 76 "app_command.h", |
| 77 "app_commands.cc", | 77 "app_commands.cc", |
| 78 "app_commands.h", | 78 "app_commands.h", |
| 79 "app_registration_data.h", | 79 "app_registration_data.h", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 190 |
| 191 args = [ | 191 args = [ |
| 192 "-i", | 192 "-i", |
| 193 rebase_path(grdfile, root_build_dir) + ":resources", | 193 rebase_path(grdfile, root_build_dir) + ":resources", |
| 194 "-n", | 194 "-n", |
| 195 "installer_util_strings", | 195 "installer_util_strings", |
| 196 "-o", | 196 "-o", |
| 197 rebase_path(outdir, root_build_dir), | 197 rebase_path(outdir, root_build_dir), |
| 198 ] | 198 ] |
| 199 } | 199 } |
| OLD | NEW |