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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
143 "move_tree_work_item.cc", | 143 "move_tree_work_item.cc", |
144 "move_tree_work_item.h", | 144 "move_tree_work_item.h", |
145 "non_updating_app_registration_data.cc", | 145 "non_updating_app_registration_data.cc", |
146 "non_updating_app_registration_data.h", | 146 "non_updating_app_registration_data.h", |
147 "registry_key_backup.cc", | 147 "registry_key_backup.cc", |
148 "registry_key_backup.h", | 148 "registry_key_backup.h", |
149 "self_reg_work_item.cc", | 149 "self_reg_work_item.cc", |
150 "self_reg_work_item.h", | 150 "self_reg_work_item.h", |
151 "set_reg_value_work_item.cc", | 151 "set_reg_value_work_item.cc", |
152 "set_reg_value_work_item.h", | 152 "set_reg_value_work_item.h", |
153 "update_active_setup_version_work_item.cc", | |
grt (UTC plus 2)
2015/07/09 14:23:53
move to installer/setup/BUILD.gn for the unittest.
gab
2015/07/09 20:36:37
Same argument as the other ones.
| |
154 "update_active_setup_version_work_item.h", | |
153 "updating_app_registration_data.cc", | 155 "updating_app_registration_data.cc", |
154 "updating_app_registration_data.h", | 156 "updating_app_registration_data.h", |
155 "util_constants.cc", | 157 "util_constants.cc", |
156 "util_constants.h", | 158 "util_constants.h", |
157 "wmi.cc", | 159 "wmi.cc", |
158 "wmi.h", | 160 "wmi.h", |
159 "work_item.cc", | 161 "work_item.cc", |
160 "work_item.h", | 162 "work_item.h", |
161 "work_item_list.cc", | 163 "work_item_list.cc", |
162 "work_item_list.h", | 164 "work_item_list.h", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
249 "registry_key_backup_unittest.cc", | 251 "registry_key_backup_unittest.cc", |
250 "registry_test_data.cc", | 252 "registry_test_data.cc", |
251 "registry_test_data.h", | 253 "registry_test_data.h", |
252 "run_all_unittests.cc", | 254 "run_all_unittests.cc", |
253 "self_cleaning_temp_dir_unittest.cc", | 255 "self_cleaning_temp_dir_unittest.cc", |
254 "set_reg_value_work_item_unittest.cc", | 256 "set_reg_value_work_item_unittest.cc", |
255 "shell_util_unittest.cc", | 257 "shell_util_unittest.cc", |
256 "test_app_registration_data.cc", | 258 "test_app_registration_data.cc", |
257 "test_app_registration_data.h", | 259 "test_app_registration_data.h", |
258 "uninstall_metrics_unittest.cc", | 260 "uninstall_metrics_unittest.cc", |
261 "update_active_setup_version_work_item_unittest.cc", | |
grt (UTC plus 2)
2015/07/09 14:23:53
move to installer/setup/BUILD.gn
gab
2015/07/09 20:36:37
Same.
| |
259 "wmi_unittest.cc", | 262 "wmi_unittest.cc", |
260 "work_item_list_unittest.cc", | 263 "work_item_list_unittest.cc", |
261 ] | 264 ] |
262 | 265 |
263 deps = [ | 266 deps = [ |
264 ":strings", | 267 ":strings", |
265 ":util", | 268 ":util", |
266 "//base", | 269 "//base", |
267 "//base:i18n", | 270 "//base:i18n", |
268 "//base/test:test_support", | 271 "//base/test:test_support", |
269 "//chrome:other_version", | 272 "//chrome:other_version", |
270 "//chrome/common", | 273 "//chrome/common", |
271 "//chrome/installer/test:alternate_version_generator_lib", | 274 "//chrome/installer/test:alternate_version_generator_lib", |
272 "//content/public/common", | 275 "//content/public/common", |
273 | 276 |
274 # TODO(rockot): Remove this hack when we fix mojo environment deps. | 277 # TODO(rockot): Remove this hack when we fix mojo environment deps. |
275 # See http://crbug.com/501385 | 278 # See http://crbug.com/501385 |
276 "//mojo/environment:chromium", | 279 "//mojo/environment:chromium", |
277 "//testing/gmock", | 280 "//testing/gmock", |
278 "//testing/gtest", | 281 "//testing/gtest", |
279 ] | 282 ] |
280 | 283 |
281 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install er.exe.manifest | 284 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install er.exe.manifest |
282 } | 285 } |
283 } # is_win | 286 } # is_win |
OLD | NEW |