| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "lzma_file_allocator.h", | 69 "lzma_file_allocator.h", |
| 70 "lzma_util.cc", | 70 "lzma_util.cc", |
| 71 "lzma_util.h", | 71 "lzma_util.h", |
| 72 "master_preferences.cc", | 72 "master_preferences.cc", |
| 73 "master_preferences.h", | 73 "master_preferences.h", |
| 74 "product.cc", | 74 "product.cc", |
| 75 "product.h", | 75 "product.h", |
| 76 "product_operations.h", | 76 "product_operations.h", |
| 77 "registry_entry.cc", | 77 "registry_entry.cc", |
| 78 "registry_entry.h", | 78 "registry_entry.h", |
| 79 "scoped_token_privilege.cc", |
| 80 "scoped_token_privilege.h", |
| 79 "scoped_user_protocol_entry.cc", | 81 "scoped_user_protocol_entry.cc", |
| 80 "scoped_user_protocol_entry.h", | 82 "scoped_user_protocol_entry.h", |
| 81 "self_cleaning_temp_dir.cc", | 83 "self_cleaning_temp_dir.cc", |
| 82 "self_cleaning_temp_dir.h", | 84 "self_cleaning_temp_dir.h", |
| 83 "shell_util.cc", | 85 "shell_util.cc", |
| 84 "shell_util.h", | 86 "shell_util.h", |
| 85 "uninstall_metrics.cc", | 87 "uninstall_metrics.cc", |
| 86 "uninstall_metrics.h", | 88 "uninstall_metrics.h", |
| 87 "user_experiment.cc", | 89 "user_experiment.cc", |
| 88 "user_experiment.h", | 90 "user_experiment.h", |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 "lzma_file_allocator_unittest.cc", | 305 "lzma_file_allocator_unittest.cc", |
| 304 "lzma_util_unittest.cc", | 306 "lzma_util_unittest.cc", |
| 305 "master_preferences_unittest.cc", | 307 "master_preferences_unittest.cc", |
| 306 "move_tree_work_item_unittest.cc", | 308 "move_tree_work_item_unittest.cc", |
| 307 "product_state_unittest.cc", | 309 "product_state_unittest.cc", |
| 308 "product_unittest.cc", | 310 "product_unittest.cc", |
| 309 "registry_key_backup_unittest.cc", | 311 "registry_key_backup_unittest.cc", |
| 310 "registry_test_data.cc", | 312 "registry_test_data.cc", |
| 311 "registry_test_data.h", | 313 "registry_test_data.h", |
| 312 "run_all_unittests.cc", | 314 "run_all_unittests.cc", |
| 315 "scoped_token_privilege_unittest.cc", |
| 313 "scoped_user_protocol_entry_unittest.cc", | 316 "scoped_user_protocol_entry_unittest.cc", |
| 314 "self_cleaning_temp_dir_unittest.cc", | 317 "self_cleaning_temp_dir_unittest.cc", |
| 315 "set_reg_value_work_item_unittest.cc", | 318 "set_reg_value_work_item_unittest.cc", |
| 316 "shell_util_unittest.cc", | 319 "shell_util_unittest.cc", |
| 317 "test_app_registration_data.cc", | 320 "test_app_registration_data.cc", |
| 318 "test_app_registration_data.h", | 321 "test_app_registration_data.h", |
| 319 "uninstall_metrics_unittest.cc", | 322 "uninstall_metrics_unittest.cc", |
| 320 "wmi_unittest.cc", | 323 "wmi_unittest.cc", |
| 321 "work_item_list_unittest.cc", | 324 "work_item_list_unittest.cc", |
| 322 "work_item_mocks.cc", | 325 "work_item_mocks.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 340 "//testing/gmock", | 343 "//testing/gmock", |
| 341 "//testing/gtest", | 344 "//testing/gtest", |
| 342 ] | 345 ] |
| 343 | 346 |
| 344 data = [ | 347 data = [ |
| 345 "//chrome/test/data/extensions/", | 348 "//chrome/test/data/extensions/", |
| 346 "//chrome/test/data/installer/", | 349 "//chrome/test/data/installer/", |
| 347 ] | 350 ] |
| 348 } | 351 } |
| 349 } # is_win | 352 } # is_win |
| OLD | NEW |