Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: components/BUILD.gn

Issue 579673003: Move content_settings_observer.h, content_settings_provider.h, content_settings_rule.* to the compo… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: last comment Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/features.gni") 5 import("//build/config/features.gni")
6 6
7 # Collection of all components. You wouldn't link to this, but this is rather 7 # Collection of all components. You wouldn't link to this, but this is rather
8 # to reference the files so they can be compiled by the build system. 8 # to reference the files so they can be compiled by the build system.
9 group("all_components") { 9 group("all_components") {
10 testonly = true # You shouldn't actually link to this. 10 testonly = true # You shouldn't actually link to this.
11 visibility = [ "//:*" ] # Only for the root targets to bring in. 11 visibility = [ "//:*" ] # Only for the root targets to bring in.
12 12
13 deps = [ 13 deps = [
14 "//components/auto_login_parser", 14 "//components/auto_login_parser",
15 "//components/autofill/content/browser", 15 "//components/autofill/content/browser",
16 "//components/autofill/content/common", 16 "//components/autofill/content/common",
17 "//components/autofill/content/renderer", 17 "//components/autofill/content/renderer",
18 "//components/bookmarks/browser", 18 "//components/bookmarks/browser",
19 "//components/bookmarks/common", 19 "//components/bookmarks/common",
20 "//components/bookmarks/test", 20 "//components/bookmarks/test",
21 "//components/captive_portal", 21 "//components/captive_portal",
22 "//components/cdm/browser", 22 "//components/cdm/browser",
23 "//components/cdm/common", 23 "//components/cdm/common",
24 "//components/cdm/renderer", 24 "//components/cdm/renderer",
25 "//components/cloud_devices/common", 25 "//components/cloud_devices/common",
26 "//components/component_updater", 26 "//components/component_updater",
27 "//components/content_settings/core/browser",
28 "//components/content_settings/core/common",
27 "//components/crash/app", 29 "//components/crash/app",
28 "//components/crash/browser", 30 "//components/crash/browser",
29 "//components/crx_file", 31 "//components/crx_file",
30 "//components/data_reduction_proxy/browser", 32 "//components/data_reduction_proxy/browser",
31 "//components/data_reduction_proxy/common", 33 "//components/data_reduction_proxy/common",
32 "//components/dom_distiller/core", 34 "//components/dom_distiller/core",
33 "//components/domain_reliability", 35 "//components/domain_reliability",
34 "//components/enhanced_bookmarks", 36 "//components/enhanced_bookmarks",
35 "//components/favicon/core", 37 "//components/favicon/core",
36 "//components/favicon_base", 38 "//components/favicon_base",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 # test source set and not here. 207 # test source set and not here.
206 deps = [ 208 deps = [
207 "//components/auto_login_parser:unit_tests", 209 "//components/auto_login_parser:unit_tests",
208 "//components/autofill/content/browser:unit_tests", 210 "//components/autofill/content/browser:unit_tests",
209 "//components/autofill/core/browser:unit_tests", 211 "//components/autofill/core/browser:unit_tests",
210 "//components/autofill/core/common:unit_tests", 212 "//components/autofill/core/common:unit_tests",
211 "//components/bookmarks/browser:unit_tests", 213 "//components/bookmarks/browser:unit_tests",
212 "//components/captive_portal:unit_tests", 214 "//components/captive_portal:unit_tests",
213 "//components/cloud_devices/common:unit_tests", 215 "//components/cloud_devices/common:unit_tests",
214 "//components/component_updater:unit_tests", 216 "//components/component_updater:unit_tests",
217 "//components/content_settings/core/browser:unit_tests",
215 "//components/content_settings/core/common:unit_tests", 218 "//components/content_settings/core/common:unit_tests",
216 "//components/crx_file:unit_tests", 219 "//components/crx_file:unit_tests",
217 "//components/data_reduction_proxy/browser:unit_tests", 220 "//components/data_reduction_proxy/browser:unit_tests",
218 "//components/data_reduction_proxy/common:unit_tests", 221 "//components/data_reduction_proxy/common:unit_tests",
219 "//components/dom_distiller/core:unit_tests", 222 "//components/dom_distiller/core:unit_tests",
220 "//components/domain_reliability:unit_tests", 223 "//components/domain_reliability:unit_tests",
221 "//components/omnibox:unit_tests", 224 "//components/omnibox:unit_tests",
222 "//components/ownership:unit_tests", 225 "//components/ownership:unit_tests",
223 "//components/proximity_auth:unit_tests", 226 "//components/proximity_auth:unit_tests",
224 ] 227 ]
225 228
226 # TODO(GYP) need this target. 229 # TODO(GYP) need this target.
227 #'breakpad/app/crash_keys_win_unittest.cc', 230 #'breakpad/app/crash_keys_win_unittest.cc',
228 231
229 # Precache tests need these defines. 232 # Precache tests need these defines.
230 #configs += [ "//components/precache/core:precache_config" ] 233 #configs += [ "//components/precache/core:precache_config" ]
231 } 234 }
232 235
233 } 236 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698