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

Unified Diff: components/BUILD.gn

Issue 1466143002: arc-bridge: Enable ARC with a command-line flag (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Rebased to ToT Created 5 years, 1 month 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 | « chromeos/chromeos_switches.cc ('k') | components/arc/arc_bridge_service.h » ('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 caea660f470180cf67d118ca057c5d30328d2142..038f18d6f52df1b300c41b13aaccb86bccfaedb1 100644
--- a/components/BUILD.gn
+++ b/components/BUILD.gn
@@ -92,6 +92,7 @@ group("all_components") {
deps += [
"//components/about_handler",
"//components/app_modal",
+ "//components/arc",
"//components/auto_login_parser",
"//components/autofill/content/browser",
"//components/autofill/content/common",
@@ -225,15 +226,12 @@ group("all_components") {
if (!is_chromeos) {
deps -= [
+ "//components/arc",
"//components/pairing",
"//components/wifi_sync",
]
}
- if (is_chromeos && enable_arc) {
- deps += [ "//components/arc" ]
- }
-
if (!use_ash) {
deps -= [ "//components/exo" ]
}
@@ -512,10 +510,10 @@ test("components_unittests") {
}
}
if (is_chromeos) {
- deps += [ "//components/ownership:unit_tests" ]
- }
- if (is_chromeos && enable_arc) {
- deps += [ "//components/arc:unit_tests" ]
+ deps += [
+ "//components/arc:unit_tests",
+ "//components/ownership:unit_tests",
+ ]
}
# TODO(GYP) need this target.
« no previous file with comments | « chromeos/chromeos_switches.cc ('k') | components/arc/arc_bridge_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698