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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..00543411b0919b78cfc22db5973ad8cf7008d4d3
--- /dev/null
+++ b/components/BUILD.gn
@@ -0,0 +1,46 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Collection of all components. You wouldn't link to this, but this is rather
+# to reference the files so they can be compiled by the build system.
+group("all") {
+ visibility = "//:*" # Only for the root targets to bring in.
+
+ deps = [
+ "//components/cloud_devices/common",
+ "//components/favicon_base",
+ "//components/json_schema",
+ "//components/language_usage_metrics",
+ "//components/metrics",
+ "//components/navigation_metrics",
+ "//components/onc",
+ "//components/os_crypt",
+ "//components/query_parser",
+ "//components/resources:components_resources",
+ "//components/startup_metric_utils",
+ "//components/tracing",
+ "//components/translate:translate_core_browser",
+ "//components/translate:translate_core_common",
+ "//components/url_matcher",
+ "//components/user_prefs",
+ "//components/visitedlink/browser",
+ "//components/visitedlink/common",
+ #"//components/visitedlink/renderer", # Blocked on blink
+ ]
+
+ if (!is_ios) {
+ deps += [ "//components/keyed_service/content" ]
+ }
+
+ if (is_android) {
+ deps -= [
+ "//components/cloud_devices/common", # Should work, needs checking.
+ "//components/json_schema", # Should work, needs checking.
+ "//components/keyed_service/content", # Blocked on content.
+ "//components/user_prefs", # Blocked on content.
+ "//components/visitedlink/browser", # Blocked on content.
+ "//components/visitedlink/common", # Blocked on content.
+ ]
+ }
+}
« 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