| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 sources += [ | 74 sources += [ |
| 75 "advanced_firewall_manager_win.cc", | 75 "advanced_firewall_manager_win.cc", |
| 76 "advanced_firewall_manager_win.h", | 76 "advanced_firewall_manager_win.h", |
| 77 "app_command.cc", | 77 "app_command.cc", |
| 78 "app_command.h", | 78 "app_command.h", |
| 79 "app_commands.cc", | 79 "app_commands.cc", |
| 80 "app_commands.h", | 80 "app_commands.h", |
| 81 "app_registration_data.h", | 81 "app_registration_data.h", |
| 82 "auto_launch_util.cc", | 82 "auto_launch_util.cc", |
| 83 "auto_launch_util.h", | 83 "auto_launch_util.h", |
| 84 "beacons.cc", |
| 85 "beacons.h", |
| 84 "browser_distribution.cc", | 86 "browser_distribution.cc", |
| 85 "browser_distribution.h", | 87 "browser_distribution.h", |
| 86 "callback_work_item.cc", | 88 "callback_work_item.cc", |
| 87 "callback_work_item.h", | 89 "callback_work_item.h", |
| 88 "channel_info.cc", | 90 "channel_info.cc", |
| 89 "channel_info.h", | 91 "channel_info.h", |
| 90 "chrome_frame_distribution.cc", | 92 "chrome_frame_distribution.cc", |
| 91 "chrome_frame_distribution.h", | 93 "chrome_frame_distribution.h", |
| 92 "chromium_binaries_distribution.cc", | 94 "chromium_binaries_distribution.cc", |
| 93 "chromium_binaries_distribution.h", | 95 "chromium_binaries_distribution.h", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 ":generate_strings", | 208 ":generate_strings", |
| 207 ] | 209 ] |
| 208 } | 210 } |
| 209 | 211 |
| 210 if (is_win) { | 212 if (is_win) { |
| 211 test("installer_util_unittests") { | 213 test("installer_util_unittests") { |
| 212 sources = [ | 214 sources = [ |
| 213 "../setup/compat_checks_unittest.cc", | 215 "../setup/compat_checks_unittest.cc", |
| 214 "../setup/setup_constants.cc", | 216 "../setup/setup_constants.cc", |
| 215 "advanced_firewall_manager_win_unittest.cc", | 217 "advanced_firewall_manager_win_unittest.cc", |
| 218 "beacons_unittest.cc", |
| 216 "callback_work_item_unittest.cc", | 219 "callback_work_item_unittest.cc", |
| 217 "channel_info_unittest.cc", | 220 "channel_info_unittest.cc", |
| 218 "copy_tree_work_item_unittest.cc", | 221 "copy_tree_work_item_unittest.cc", |
| 219 "create_dir_work_item_unittest.cc", | 222 "create_dir_work_item_unittest.cc", |
| 220 "create_reg_key_work_item_unittest.cc", | 223 "create_reg_key_work_item_unittest.cc", |
| 221 "delete_after_reboot_helper_unittest.cc", | 224 "delete_after_reboot_helper_unittest.cc", |
| 222 "delete_reg_key_work_item_unittest.cc", | 225 "delete_reg_key_work_item_unittest.cc", |
| 223 "delete_reg_value_work_item_unittest.cc", | 226 "delete_reg_value_work_item_unittest.cc", |
| 224 "delete_tree_work_item_unittest.cc", | 227 "delete_tree_work_item_unittest.cc", |
| 225 "duplicate_tree_detector_unittest.cc", | 228 "duplicate_tree_detector_unittest.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 242 "product_state_unittest.cc", | 245 "product_state_unittest.cc", |
| 243 "product_unittest.cc", | 246 "product_unittest.cc", |
| 244 "product_unittest.h", | 247 "product_unittest.h", |
| 245 "registry_key_backup_unittest.cc", | 248 "registry_key_backup_unittest.cc", |
| 246 "registry_test_data.cc", | 249 "registry_test_data.cc", |
| 247 "registry_test_data.h", | 250 "registry_test_data.h", |
| 248 "run_all_unittests.cc", | 251 "run_all_unittests.cc", |
| 249 "self_cleaning_temp_dir_unittest.cc", | 252 "self_cleaning_temp_dir_unittest.cc", |
| 250 "set_reg_value_work_item_unittest.cc", | 253 "set_reg_value_work_item_unittest.cc", |
| 251 "shell_util_unittest.cc", | 254 "shell_util_unittest.cc", |
| 255 "test_app_registration_data.cc", |
| 256 "test_app_registration_data.h", |
| 252 "uninstall_metrics_unittest.cc", | 257 "uninstall_metrics_unittest.cc", |
| 253 "wmi_unittest.cc", | 258 "wmi_unittest.cc", |
| 254 "work_item_list_unittest.cc", | 259 "work_item_list_unittest.cc", |
| 255 ] | 260 ] |
| 256 | 261 |
| 257 deps = [ | 262 deps = [ |
| 258 ":strings", | 263 ":strings", |
| 259 ":util", | 264 ":util", |
| 260 "//base", | 265 "//base", |
| 261 "//base:i18n", | 266 "//base:i18n", |
| 262 "//base/test:test_support", | 267 "//base/test:test_support", |
| 263 "//chrome:other_version", | 268 "//chrome:other_version", |
| 264 "//chrome/installer/test:alternate_version_generator_lib", | 269 "//chrome/installer/test:alternate_version_generator_lib", |
| 265 "//content/public/common", | 270 "//content/public/common", |
| 266 "//testing/gmock", | 271 "//testing/gmock", |
| 267 "//testing/gtest", | 272 "//testing/gtest", |
| 268 ] | 273 ] |
| 269 | 274 |
| 270 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 275 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 271 } | 276 } |
| 272 } # is_win | 277 } # is_win |
| OLD | NEW |