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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 allow_circular_includes_from = [ "//chrome/common:constants" ] | 52 allow_circular_includes_from = [ "//chrome/common:constants" ] |
53 | 53 |
54 if (is_win) { | 54 if (is_win) { |
55 sources = [ | 55 sources = [ |
56 "chrome_binaries_operations.cc", | 56 "chrome_binaries_operations.cc", |
57 "chrome_binaries_operations.h", | 57 "chrome_binaries_operations.h", |
58 "chrome_browser_operations.cc", | 58 "chrome_browser_operations.cc", |
59 "chrome_browser_operations.h", | 59 "chrome_browser_operations.h", |
60 "chrome_browser_sxs_operations.cc", | 60 "chrome_browser_sxs_operations.cc", |
61 "chrome_browser_sxs_operations.h", | 61 "chrome_browser_sxs_operations.h", |
62 "chrome_frame_operations.cc", | |
63 "chrome_frame_operations.h", | |
64 "compat_checks.cc", | 62 "compat_checks.cc", |
65 "compat_checks.h", | 63 "compat_checks.h", |
66 "delete_after_reboot_helper.cc", | 64 "delete_after_reboot_helper.cc", |
67 "delete_after_reboot_helper.h", | 65 "delete_after_reboot_helper.h", |
68 "google_chrome_distribution.cc", | 66 "google_chrome_distribution.cc", |
69 "google_chrome_distribution.h", | 67 "google_chrome_distribution.h", |
70 "html_dialog.h", | 68 "html_dialog.h", |
71 "html_dialog_impl.cc", | 69 "html_dialog_impl.cc", |
72 "logging_installer.cc", | 70 "logging_installer.cc", |
73 "logging_installer.h", | 71 "logging_installer.h", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "auto_launch_util.cc", | 134 "auto_launch_util.cc", |
137 "auto_launch_util.h", | 135 "auto_launch_util.h", |
138 "beacons.cc", | 136 "beacons.cc", |
139 "beacons.h", | 137 "beacons.h", |
140 "browser_distribution.cc", | 138 "browser_distribution.cc", |
141 "browser_distribution.h", | 139 "browser_distribution.h", |
142 "callback_work_item.cc", | 140 "callback_work_item.cc", |
143 "callback_work_item.h", | 141 "callback_work_item.h", |
144 "channel_info.cc", | 142 "channel_info.cc", |
145 "channel_info.h", | 143 "channel_info.h", |
146 "chrome_frame_distribution.cc", | |
147 "chrome_frame_distribution.h", | |
148 "chromium_binaries_distribution.cc", | 144 "chromium_binaries_distribution.cc", |
149 "chromium_binaries_distribution.h", | 145 "chromium_binaries_distribution.h", |
150 "conditional_work_item_list.cc", | 146 "conditional_work_item_list.cc", |
151 "conditional_work_item_list.h", | 147 "conditional_work_item_list.h", |
152 "copy_tree_work_item.cc", | 148 "copy_tree_work_item.cc", |
153 "copy_tree_work_item.h", | 149 "copy_tree_work_item.h", |
154 "create_dir_work_item.cc", | 150 "create_dir_work_item.cc", |
155 "create_dir_work_item.h", | 151 "create_dir_work_item.h", |
156 "create_reg_key_work_item.cc", | 152 "create_reg_key_work_item.cc", |
157 "create_reg_key_work_item.h", | 153 "create_reg_key_work_item.h", |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 "//testing/gmock", | 346 "//testing/gmock", |
351 "//testing/gtest", | 347 "//testing/gtest", |
352 ] | 348 ] |
353 | 349 |
354 data = [ | 350 data = [ |
355 "//chrome/test/data/extensions/", | 351 "//chrome/test/data/extensions/", |
356 "//chrome/test/data/installer/", | 352 "//chrome/test/data/installer/", |
357 ] | 353 ] |
358 } | 354 } |
359 } # is_win | 355 } # is_win |
OLD | NEW |