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

Side by Side Diff: components/BUILD.gn

Issue 961683002: Move ManagedBookmarksTracker from policy/core/browser to bookmarks/managed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add back to policy DEPS Created 5 years, 9 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_browser.gypi ('k') | components/bookmarks.gypi » ('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 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
11 # to reference the files so they can be compiled by the build system. 11 # to reference the files so they can be compiled by the build system.
12 group("all_components") { 12 group("all_components") {
13 testonly = true # You shouldn't actually link to this. 13 testonly = true # You shouldn't actually link to this.
14 visibility = [ "//:*" ] # Only for the root targets to bring in. 14 visibility = [ "//:*" ] # Only for the root targets to bring in.
15 15
16 deps = [ 16 deps = [
17 "//components/auto_login_parser", 17 "//components/auto_login_parser",
18 "//components/autofill/content/browser", 18 "//components/autofill/content/browser",
19 "//components/autofill/content/common", 19 "//components/autofill/content/common",
20 "//components/autofill/content/renderer", 20 "//components/autofill/content/renderer",
21 "//components/bookmarks/browser", 21 "//components/bookmarks/browser",
22 "//components/bookmarks/common", 22 "//components/bookmarks/common",
23 "//components/bookmarks/managed",
23 "//components/bookmarks/test", 24 "//components/bookmarks/test",
24 "//components/captive_portal", 25 "//components/captive_portal",
25 "//components/cdm/browser", 26 "//components/cdm/browser",
26 "//components/cdm/common", 27 "//components/cdm/common",
27 "//components/cdm/renderer", 28 "//components/cdm/renderer",
28 "//components/cloud_devices/common", 29 "//components/cloud_devices/common",
29 "//components/component_updater", 30 "//components/component_updater",
30 "//components/content_settings/core/browser", 31 "//components/content_settings/core/browser",
31 "//components/content_settings/core/common", 32 "//components/content_settings/core/common",
32 "//components/crash/app", 33 "//components/crash/app",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 231
231 # Add only ":unit_tests" dependencies here. If your tests have dependencies 232 # Add only ":unit_tests" dependencies here. If your tests have dependencies
232 # (this would at least include the component itself), they should be on the 233 # (this would at least include the component itself), they should be on the
233 # test source set and not here. 234 # test source set and not here.
234 deps = [ 235 deps = [
235 "//components/auto_login_parser:unit_tests", 236 "//components/auto_login_parser:unit_tests",
236 "//components/autofill/content/browser:unit_tests", 237 "//components/autofill/content/browser:unit_tests",
237 "//components/autofill/core/browser:unit_tests", 238 "//components/autofill/core/browser:unit_tests",
238 "//components/autofill/core/common:unit_tests", 239 "//components/autofill/core/common:unit_tests",
239 "//components/bookmarks/browser:unit_tests", 240 "//components/bookmarks/browser:unit_tests",
241 "//components/bookmarks/managed:unit_tests",
240 "//components/captive_portal:unit_tests", 242 "//components/captive_portal:unit_tests",
241 "//components/cloud_devices/common:unit_tests", 243 "//components/cloud_devices/common:unit_tests",
242 "//components/content_settings/core/browser:unit_tests", 244 "//components/content_settings/core/browser:unit_tests",
243 "//components/content_settings/core/common:unit_tests", 245 "//components/content_settings/core/common:unit_tests",
244 "//components/crx_file:unit_tests", 246 "//components/crx_file:unit_tests",
245 "//components/data_reduction_proxy/content/browser:unit_tests", 247 "//components/data_reduction_proxy/content/browser:unit_tests",
246 "//components/data_reduction_proxy/core/browser:unit_tests", 248 "//components/data_reduction_proxy/core/browser:unit_tests",
247 "//components/data_reduction_proxy/core/common:unit_tests", 249 "//components/data_reduction_proxy/core/common:unit_tests",
248 "//components/device_event_log:unit_tests", 250 "//components/device_event_log:unit_tests",
249 "//components/dom_distiller/core:unit_tests", 251 "//components/dom_distiller/core:unit_tests",
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 358
357 deps = [ 359 deps = [
358 "//base", 360 "//base",
359 "//base/test:test_support_perf", 361 "//base/test:test_support_perf",
360 "//testing/gtest", 362 "//testing/gtest",
361 "//content/test:test_support", 363 "//content/test:test_support",
362 "//components/visitedlink/browser", 364 "//components/visitedlink/browser",
363 ] 365 ]
364 } 366 }
365 } 367 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/bookmarks.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698