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 # This file deliberately has no default "util" target so dependants have to | 8 # This file deliberately has no default "util" target so dependants have to |
9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random | 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random |
10 # code that ends up getting linked into chrome proper should depend on the | 10 # code that ends up getting linked into chrome proper should depend on the |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "chromium_binaries_distribution.cc", | 152 "chromium_binaries_distribution.cc", |
153 "chromium_binaries_distribution.h", | 153 "chromium_binaries_distribution.h", |
154 "conditional_work_item_list.cc", | 154 "conditional_work_item_list.cc", |
155 "conditional_work_item_list.h", | 155 "conditional_work_item_list.h", |
156 "copy_tree_work_item.cc", | 156 "copy_tree_work_item.cc", |
157 "copy_tree_work_item.h", | 157 "copy_tree_work_item.h", |
158 "create_dir_work_item.cc", | 158 "create_dir_work_item.cc", |
159 "create_dir_work_item.h", | 159 "create_dir_work_item.h", |
160 "create_reg_key_work_item.cc", | 160 "create_reg_key_work_item.cc", |
161 "create_reg_key_work_item.h", | 161 "create_reg_key_work_item.h", |
| 162 "delete_old_versions.cc", |
| 163 "delete_old_versions.h", |
162 "delete_reg_key_work_item.cc", | 164 "delete_reg_key_work_item.cc", |
163 "delete_reg_key_work_item.h", | 165 "delete_reg_key_work_item.h", |
164 "delete_reg_value_work_item.cc", | 166 "delete_reg_value_work_item.cc", |
165 "delete_reg_value_work_item.h", | 167 "delete_reg_value_work_item.h", |
166 "delete_tree_work_item.cc", | 168 "delete_tree_work_item.cc", |
167 "delete_tree_work_item.h", | 169 "delete_tree_work_item.h", |
168 "duplicate_tree_detector.cc", | 170 "duplicate_tree_detector.cc", |
169 "duplicate_tree_detector.h", | 171 "duplicate_tree_detector.h", |
170 "firewall_manager_win.cc", | 172 "firewall_manager_win.cc", |
171 "firewall_manager_win.h", | 173 "firewall_manager_win.h", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 sources = [ | 286 sources = [ |
285 "../setup/compat_checks_unittest.cc", | 287 "../setup/compat_checks_unittest.cc", |
286 "advanced_firewall_manager_win_unittest.cc", | 288 "advanced_firewall_manager_win_unittest.cc", |
287 "beacons_unittest.cc", | 289 "beacons_unittest.cc", |
288 "callback_work_item_unittest.cc", | 290 "callback_work_item_unittest.cc", |
289 "channel_info_unittest.cc", | 291 "channel_info_unittest.cc", |
290 "copy_tree_work_item_unittest.cc", | 292 "copy_tree_work_item_unittest.cc", |
291 "create_dir_work_item_unittest.cc", | 293 "create_dir_work_item_unittest.cc", |
292 "create_reg_key_work_item_unittest.cc", | 294 "create_reg_key_work_item_unittest.cc", |
293 "delete_after_reboot_helper_unittest.cc", | 295 "delete_after_reboot_helper_unittest.cc", |
| 296 "delete_old_versions_unittest.cc", |
294 "delete_reg_key_work_item_unittest.cc", | 297 "delete_reg_key_work_item_unittest.cc", |
295 "delete_reg_value_work_item_unittest.cc", | 298 "delete_reg_value_work_item_unittest.cc", |
296 "delete_tree_work_item_unittest.cc", | 299 "delete_tree_work_item_unittest.cc", |
297 "duplicate_tree_detector_unittest.cc", | 300 "duplicate_tree_detector_unittest.cc", |
298 "fake_installation_state.h", | 301 "fake_installation_state.h", |
299 "fake_product_state.h", | 302 "fake_product_state.h", |
300 "google_update_settings_unittest.cc", | 303 "google_update_settings_unittest.cc", |
301 "install_util_unittest.cc", | 304 "install_util_unittest.cc", |
302 "installation_validation_helper.cc", | 305 "installation_validation_helper.cc", |
303 "installation_validation_helper.h", | 306 "installation_validation_helper.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 ] | 346 ] |
344 | 347 |
345 data = [ | 348 data = [ |
346 "//chrome/test/data/extensions/", | 349 "//chrome/test/data/extensions/", |
347 "//chrome/test/data/installer/", | 350 "//chrome/test/data/installer/", |
348 ] | 351 ] |
349 | 352 |
350 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 353 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
351 } | 354 } |
352 } # is_win | 355 } # is_win |
OLD | NEW |