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", | |
164 "delete_reg_key_work_item.cc", | 162 "delete_reg_key_work_item.cc", |
165 "delete_reg_key_work_item.h", | 163 "delete_reg_key_work_item.h", |
166 "delete_reg_value_work_item.cc", | 164 "delete_reg_value_work_item.cc", |
167 "delete_reg_value_work_item.h", | 165 "delete_reg_value_work_item.h", |
168 "delete_tree_work_item.cc", | 166 "delete_tree_work_item.cc", |
169 "delete_tree_work_item.h", | 167 "delete_tree_work_item.h", |
170 "duplicate_tree_detector.cc", | 168 "duplicate_tree_detector.cc", |
171 "duplicate_tree_detector.h", | 169 "duplicate_tree_detector.h", |
172 "firewall_manager_win.cc", | 170 "firewall_manager_win.cc", |
173 "firewall_manager_win.h", | 171 "firewall_manager_win.h", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 sources = [ | 284 sources = [ |
287 "../setup/compat_checks_unittest.cc", | 285 "../setup/compat_checks_unittest.cc", |
288 "advanced_firewall_manager_win_unittest.cc", | 286 "advanced_firewall_manager_win_unittest.cc", |
289 "beacons_unittest.cc", | 287 "beacons_unittest.cc", |
290 "callback_work_item_unittest.cc", | 288 "callback_work_item_unittest.cc", |
291 "channel_info_unittest.cc", | 289 "channel_info_unittest.cc", |
292 "copy_tree_work_item_unittest.cc", | 290 "copy_tree_work_item_unittest.cc", |
293 "create_dir_work_item_unittest.cc", | 291 "create_dir_work_item_unittest.cc", |
294 "create_reg_key_work_item_unittest.cc", | 292 "create_reg_key_work_item_unittest.cc", |
295 "delete_after_reboot_helper_unittest.cc", | 293 "delete_after_reboot_helper_unittest.cc", |
296 "delete_old_versions_unittest.cc", | |
297 "delete_reg_key_work_item_unittest.cc", | 294 "delete_reg_key_work_item_unittest.cc", |
298 "delete_reg_value_work_item_unittest.cc", | 295 "delete_reg_value_work_item_unittest.cc", |
299 "delete_tree_work_item_unittest.cc", | 296 "delete_tree_work_item_unittest.cc", |
300 "duplicate_tree_detector_unittest.cc", | 297 "duplicate_tree_detector_unittest.cc", |
301 "fake_installation_state.h", | 298 "fake_installation_state.h", |
302 "fake_product_state.h", | 299 "fake_product_state.h", |
303 "google_update_settings_unittest.cc", | 300 "google_update_settings_unittest.cc", |
304 "install_util_unittest.cc", | 301 "install_util_unittest.cc", |
305 "installation_validation_helper.cc", | 302 "installation_validation_helper.cc", |
306 "installation_validation_helper.h", | 303 "installation_validation_helper.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 ] | 343 ] |
347 | 344 |
348 data = [ | 345 data = [ |
349 "//chrome/test/data/extensions/", | 346 "//chrome/test/data/extensions/", |
350 "//chrome/test/data/installer/", | 347 "//chrome/test/data/installer/", |
351 ] | 348 ] |
352 | 349 |
353 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 350 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
354 } | 351 } |
355 } # is_win | 352 } # is_win |
OLD | NEW |