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 static_library("util") { | 8 static_library("util") { |
9 deps = [ | 9 deps = [ |
10 "//base", | 10 "//base", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 ":strings", | 61 ":strings", |
62 "//base/third_party/dynamic_annotations", | 62 "//base/third_party/dynamic_annotations", |
63 "//components/metrics", | 63 "//components/metrics", |
64 "//courgette:courgette_lib", | 64 "//courgette:courgette_lib", |
65 "//crypto", | 65 "//crypto", |
66 "//third_party/bspatch", | 66 "//third_party/bspatch", |
67 "//third_party/icu", | 67 "//third_party/icu", |
68 "//third_party/lzma_sdk", | 68 "//third_party/lzma_sdk", |
69 ] | 69 ] |
70 | 70 |
71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 71 configs += [ |
72 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 72 "//build/config:precompiled_headers", |
| 73 |
| 74 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 75 "//build/config/compiler:no_size_t_to_int_warning", |
| 76 ] |
73 | 77 |
74 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN | 78 # TODO(GYP) hook up corresponding version of installer_util_nacl_win64 in GN |
75 sources += [ | 79 sources += [ |
76 "advanced_firewall_manager_win.cc", | 80 "advanced_firewall_manager_win.cc", |
77 "advanced_firewall_manager_win.h", | 81 "advanced_firewall_manager_win.h", |
78 "app_command.cc", | 82 "app_command.cc", |
79 "app_command.h", | 83 "app_command.h", |
80 "app_commands.cc", | 84 "app_commands.cc", |
81 "app_commands.h", | 85 "app_commands.h", |
82 "app_registration_data.h", | 86 "app_registration_data.h", |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 # TODO(rockot): Remove this hack when we fix mojo environment deps. | 278 # TODO(rockot): Remove this hack when we fix mojo environment deps. |
275 # See http://crbug.com/501385 | 279 # See http://crbug.com/501385 |
276 "//mojo/environment:chromium", | 280 "//mojo/environment:chromium", |
277 "//testing/gmock", | 281 "//testing/gmock", |
278 "//testing/gtest", | 282 "//testing/gtest", |
279 ] | 283 ] |
280 | 284 |
281 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 285 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
282 } | 286 } |
283 } # is_win | 287 } # is_win |
OLD | NEW |