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