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", |
11 "//chrome:resources", | |
12 "//chrome:strings", | 11 "//chrome:strings", |
| 12 "//chrome/common:constants", |
| 13 "//chrome/common:result_codes", |
| 14 "//content/public/common:result_codes", |
13 ] | 15 ] |
14 | 16 |
15 if (is_win) { | 17 if (is_win) { |
16 # TODO(GYP) installer_util on Windows. | 18 # TODO(GYP) installer_util on Windows. |
17 # This is a bit tricky. It seems that what's currently called | 19 # This is a bit tricky. It seems that what's currently called |
18 # installer_util_nacl_win64 should be a different target with a different | 20 # installer_util_nacl_win64 should be a different target with a different |
19 # name ("installer_util_minimal"?) since it's not strictly the 64-bit build | 21 # name ("installer_util_minimal"?) since it's not strictly the 64-bit build |
20 # of that target. | 22 # of that target. |
21 sources = [ | 23 sources = [ |
22 "chrome_binaries_operations.cc", | 24 "chrome_binaries_operations.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
51 "shell_util.cc", | 53 "shell_util.cc", |
52 "shell_util.h", | 54 "shell_util.h", |
53 "uninstall_metrics.cc", | 55 "uninstall_metrics.cc", |
54 "uninstall_metrics.h", | 56 "uninstall_metrics.h", |
55 "user_experiment.cc", | 57 "user_experiment.cc", |
56 "user_experiment.h", | 58 "user_experiment.h", |
57 ] | 59 ] |
58 deps += [ | 60 deps += [ |
59 ":strings", | 61 ":strings", |
60 "//base/third_party/dynamic_annotations", | 62 "//base/third_party/dynamic_annotations", |
61 "//chrome/common:constants", | |
62 "//components/metrics", | 63 "//components/metrics", |
63 "//courgette:courgette_lib", | 64 "//courgette:courgette_lib", |
64 "//crypto", | 65 "//crypto", |
65 "//third_party/bspatch", | 66 "//third_party/bspatch", |
66 "//third_party/icu", | 67 "//third_party/icu", |
67 "//third_party/lzma_sdk", | 68 "//third_party/lzma_sdk", |
68 ] | 69 ] |
69 | 70 |
70 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
71 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 72 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 "work_item_list_unittest.cc", | 255 "work_item_list_unittest.cc", |
255 ] | 256 ] |
256 | 257 |
257 deps = [ | 258 deps = [ |
258 ":strings", | 259 ":strings", |
259 ":util", | 260 ":util", |
260 "//base", | 261 "//base", |
261 "//base:i18n", | 262 "//base:i18n", |
262 "//base/test:test_support", | 263 "//base/test:test_support", |
263 "//chrome:other_version", | 264 "//chrome:other_version", |
| 265 "//chrome/common", |
264 "//chrome/installer/test:alternate_version_generator_lib", | 266 "//chrome/installer/test:alternate_version_generator_lib", |
265 "//content/public/common", | 267 "//content/public/common", |
266 "//testing/gmock", | 268 "//testing/gmock", |
267 "//testing/gtest", | 269 "//testing/gtest", |
268 ] | 270 ] |
269 | 271 |
270 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 272 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
271 } | 273 } |
272 } # is_win | 274 } # is_win |
OLD | NEW |