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

Unified Diff: components/BUILD.gn

Issue 399683005: Enable more tests in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more android printing mode 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/surfaces/BUILD.gn ('k') | components/cdm.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/BUILD.gn
diff --git a/components/BUILD.gn b/components/BUILD.gn
index aa5bbee1ed0820583d3f0075085d87c40872ef46..14df89e14d25e0482c06eb91b9c9ad93edc2e19d 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -17,6 +17,9 @@ group("all_components") {
"//components/bookmarks/common",
"//components/bookmarks/test",
"//components/captive_portal",
+ "//components/cdm/browser",
+ "//components/cdm/common",
+ "//components/cdm/renderer",
"//components/cloud_devices/common",
"//components/component_updater",
"//components/data_reduction_proxy/browser",
@@ -36,6 +39,7 @@ group("all_components") {
"//components/infobars/test:test_support",
"//components/invalidation",
"//components/json_schema",
+ "//components/keyed_service/content",
"//components/language_usage_metrics",
"//components/leveldb_proto",
"//components/metrics",
@@ -45,6 +49,7 @@ group("all_components") {
"//components/omaha_query_params",
"//components/onc",
"//components/os_crypt",
+ "//components/pairing",
"//components/password_manager/content/browser",
"//components/password_manager/core/browser",
"//components/password_manager/core/common",
@@ -62,6 +67,7 @@ group("all_components") {
"//components/signin/core/browser",
"//components/startup_metric_utils",
"//components/strings",
+ "//components/sync_driver",
"//components/tracing",
"//components/translate/content/browser",
"//components/translate/content/common",
@@ -79,22 +85,18 @@ group("all_components") {
"//components/visitedlink/renderer",
"//components/web_modal",
"//components/webdata/common",
+ "//components/wifi",
]
- if (is_win || is_mac) {
- deps += [
- "//components/wifi",
- ]
+ if (!is_win && !is_mac) {
+ deps -= [ "//components/wifi" ]
}
-
- if (is_chromeos) {
- deps += [
- "//components/pairing",
- ]
+ if (!is_chromeos) {
+ deps -= [ "//components/pairing" ]
}
- if (!is_ios) {
- deps += [ "//components/keyed_service/content" ]
+ if (is_ios) {
+ deps -= [ "//components/keyed_service/content" ]
}
if (is_android) {
@@ -105,6 +107,9 @@ group("all_components") {
"//components/autofill/content/renderer", # Blocked on content/blink.
"//components/captive_portal", # Should work, needs checking.
"//components/cloud_devices/common", # Should work, needs checking.
+ "//components/cdm/browser", # Blocked on content.
+ "//components/cdm/common", # Blocked on content.
+ "//components/cdm/renderer", # Blocked on content.
"//components/data_reduction_proxy/browser", # Should work, needs checking.
"//components/data_reduction_proxy/common", # Should work, needs checking.
"//components/dom_distiller/core", # Blocked on content.
« no previous file with comments | « cc/surfaces/BUILD.gn ('k') | components/cdm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698