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

Side by Side Diff: components/BUILD.gn

Issue 361373002: components: Add bookmarks to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | Annotate | Revision Log
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 # Collection of all components. You wouldn't link to this, but this is rather 5 # Collection of all components. You wouldn't link to this, but this is rather
6 # to reference the files so they can be compiled by the build system. 6 # to reference the files so they can be compiled by the build system.
7 group("all_components") { 7 group("all_components") {
8 visibility = "//:*" # Only for the root targets to bring in. 8 visibility = "//:*" # Only for the root targets to bring in.
9 9
10 deps = [ 10 deps = [
11 "//components/autofill/content/browser", 11 "//components/autofill/content/browser",
12 "//components/autofill/content/common", 12 "//components/autofill/content/common",
13 "//components/autofill/content/renderer", 13 "//components/autofill/content/renderer",
14 "//components/bookmarks/browser",
15 "//components/bookmarks/common",
16 "//components/bookmarks/test",
14 "//components/cloud_devices/common", 17 "//components/cloud_devices/common",
15 "//components/dom_distiller/core", 18 "//components/dom_distiller/core",
16 "//components/favicon_base", 19 "//components/favicon_base",
17 "//components/json_schema", 20 "//components/json_schema",
18 "//components/language_usage_metrics", 21 "//components/language_usage_metrics",
19 "//components/metrics", 22 "//components/metrics",
20 "//components/navigation_metrics", 23 "//components/navigation_metrics",
21 "//components/onc", 24 "//components/onc",
22 "//components/os_crypt", 25 "//components/os_crypt",
23 "//components/policy", 26 "//components/policy",
24 "//components/pref_registry", 27 "//components/pref_registry",
25 "//components/query_parser", 28 "//components/query_parser",
26 "//components/resources:components_resources", 29 "//components/resources:components_resources",
27 "//components/startup_metric_utils", 30 "//components/startup_metric_utils",
28 "//components/strings", 31 "//components/strings",
29 "//components/tracing", 32 "//components/tracing",
30 "//components/translate:translate_core_browser", 33 "//components/translate/core/browser",
31 "//components/translate:translate_core_common", 34 "//components/translate/core/common",
32 "//components/url_matcher", 35 "//components/url_matcher",
33 "//components/user_prefs", 36 "//components/user_prefs",
34 "//components/variations", 37 "//components/variations",
35 "//components/visitedlink/browser", 38 "//components/visitedlink/browser",
36 "//components/visitedlink/common", 39 "//components/visitedlink/common",
37 "//components/visitedlink/renderer", # Blocked on blink 40 "//components/visitedlink/renderer", # Blocked on blink
38 ] 41 ]
39 42
40 if (is_win || is_mac) { 43 if (is_win || is_mac) {
41 deps += [ 44 deps += [
(...skipping 15 matching lines...) Expand all
57 "//components/json_schema", # Should work, needs checking. 60 "//components/json_schema", # Should work, needs checking.
58 "//components/keyed_service/content", # Blocked on content. 61 "//components/keyed_service/content", # Blocked on content.
59 "//components/policy", # Blocked on content (indirectly via autofill). 62 "//components/policy", # Blocked on content (indirectly via autofill).
60 "//components/user_prefs", # Blocked on content. 63 "//components/user_prefs", # Blocked on content.
61 "//components/visitedlink/browser", # Blocked on content. 64 "//components/visitedlink/browser", # Blocked on content.
62 "//components/visitedlink/common", # Blocked on content. 65 "//components/visitedlink/common", # Blocked on content.
63 "//components/visitedlink/renderer", # Blocked on blink 66 "//components/visitedlink/renderer", # Blocked on blink
64 ] 67 ]
65 } 68 }
66 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698