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

Side by Side Diff: components/BUILD.gn

Issue 344993002: Add cloud_devices and json_schema to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
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.
7 group("all") {
8 visibility = "//:*" # Only for the root targets to bring in.
9
10 deps = [
11 "//components/cloud_devices/common",
12 "//components/favicon_base",
13 "//components/json_schema",
14 "//components/language_usage_metrics",
15 "//components/metrics",
16 "//components/navigation_metrics",
17 "//components/onc",
18 "//components/os_crypt",
19 "//components/query_parser",
20 "//components/resources:components_resources",
21 "//components/startup_metric_utils",
22 "//components/tracing",
23 "//components/translate:translate_core_browser",
24 "//components/translate:translate_core_common",
25 "//components/url_matcher",
26 "//components/user_prefs",
27 "//components/visitedlink/browser",
28 "//components/visitedlink/common",
29 #"//components/visitedlink/renderer", # Blocked on blink
30 ]
31
32 if (!is_ios) {
33 deps += [ "//components/keyed_service/content" ]
34 }
35
36 if (is_android) {
37 deps -= [
38 "//components/cloud_devices/common", # Should work, needs checking.
39 "//components/json_schema", # Should work, needs checking.
40 "//components/keyed_service/content", # Blocked on content.
41 "//components/user_prefs", # Blocked on content.
42 "//components/visitedlink/browser", # Blocked on content.
43 "//components/visitedlink/common", # Blocked on content.
44 ]
45 }
46 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | components/cloud_devices/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698