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

Side by Side Diff: components/BUILD.gn

Issue 343233004: Add chrome/renderer to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: work around lack of hunspell Created 6 years, 6 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
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | media/cast/cast.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 # 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/cloud_devices/common", 11 "//components/cloud_devices/common",
12 "//components/favicon_base", 12 "//components/favicon_base",
13 "//components/json_schema", 13 "//components/json_schema",
14 "//components/language_usage_metrics", 14 "//components/language_usage_metrics",
15 "//components/metrics", 15 "//components/metrics",
16 "//components/navigation_metrics", 16 "//components/navigation_metrics",
17 "//components/onc", 17 "//components/onc",
18 "//components/os_crypt", 18 "//components/os_crypt",
19 "//components/query_parser", 19 "//components/query_parser",
20 "//components/resources:components_resources", 20 "//components/resources:components_resources",
21 "//components/startup_metric_utils", 21 "//components/startup_metric_utils",
22 "//components/tracing", 22 "//components/tracing",
23 "//components/translate:translate_core_browser", 23 "//components/translate:translate_core_browser",
24 "//components/translate:translate_core_common", 24 "//components/translate:translate_core_common",
25 "//components/url_matcher", 25 "//components/url_matcher",
26 "//components/user_prefs", 26 "//components/user_prefs",
27 "//components/visitedlink/browser", 27 "//components/visitedlink/browser",
28 "//components/visitedlink/common", 28 "//components/visitedlink/common",
29 #"//components/visitedlink/renderer", # Blocked on blink 29 "//components/visitedlink/renderer", # Blocked on blink
30 ] 30 ]
31 31
32 if (!is_ios) { 32 if (!is_ios) {
33 deps += [ "//components/keyed_service/content" ] 33 deps += [ "//components/keyed_service/content" ]
34 } 34 }
35 35
36 if (is_android) { 36 if (is_android) {
37 deps -= [ 37 deps -= [
38 "//components/cloud_devices/common", # Should work, needs checking. 38 "//components/cloud_devices/common", # Should work, needs checking.
39 "//components/json_schema", # Should work, needs checking. 39 "//components/json_schema", # Should work, needs checking.
40 "//components/keyed_service/content", # Blocked on content. 40 "//components/keyed_service/content", # Blocked on content.
41 "//components/user_prefs", # Blocked on content. 41 "//components/user_prefs", # Blocked on content.
42 "//components/visitedlink/browser", # Blocked on content. 42 "//components/visitedlink/browser", # Blocked on content.
43 "//components/visitedlink/common", # Blocked on content. 43 "//components/visitedlink/common", # Blocked on content.
44 "//components/visitedlink/renderer", # Blocked on blink
44 ] 45 ]
45 } 46 }
46 } 47 }
OLDNEW
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | media/cast/cast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698