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

Side by Side Diff: components/BUILD.gn

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (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 unified diff | Download patch
« no previous file with comments | « chromeos/chromeos.gyp ('k') | components/arc.gypi » ('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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 if (!is_win && !is_mac) { 210 if (!is_win && !is_mac) {
211 deps -= [ "//components/wifi" ] 211 deps -= [ "//components/wifi" ]
212 } 212 }
213 213
214 if (!is_chromeos) { 214 if (!is_chromeos) {
215 deps -= [ 215 deps -= [
216 "//components/pairing", 216 "//components/pairing",
217 "//components/wifi_sync", 217 "//components/wifi_sync",
218 ] 218 ]
219 } 219 }
220
221 if (is_chromeos && enable_arc) {
222 deps += [ "//components/arc" ]
223 }
220 } else { 224 } else {
221 deps += [ 225 deps += [
222 "//components/autofill/ios/browser", 226 "//components/autofill/ios/browser",
223 "//components/dom_distiller/ios", 227 "//components/dom_distiller/ios",
224 "//components/webp_transcode", 228 "//components/webp_transcode",
225 ] 229 ]
226 } 230 }
227 231
228 if (toolkit_views) { 232 if (toolkit_views) {
229 deps += [ "//components/constrained_window" ] 233 deps += [ "//components/constrained_window" ]
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 "//ui/android:ui_java", 480 "//ui/android:ui_java",
477 ] 481 ]
478 482
479 if (enable_configuration_policy) { 483 if (enable_configuration_policy) {
480 apk_deps += [ "//components/policy/android:policy_java" ] 484 apk_deps += [ "//components/policy/android:policy_java" ]
481 } 485 }
482 } 486 }
483 if (is_chromeos) { 487 if (is_chromeos) {
484 deps += [ "//components/ownership:unit_tests" ] 488 deps += [ "//components/ownership:unit_tests" ]
485 } 489 }
490 if (is_chromeos && enable_arc) {
491 deps += [ "//components/arc:unit_tests" ]
492 }
486 493
487 # TODO(GYP) need this target. 494 # TODO(GYP) need this target.
488 #'breakpad/app/crash_keys_win_unittest.cc', 495 #'breakpad/app/crash_keys_win_unittest.cc',
489 496
490 if (enable_configuration_policy) { 497 if (enable_configuration_policy) {
491 deps += [ 498 deps += [
492 "//components/policy/core/browser:unit_tests", 499 "//components/policy/core/browser:unit_tests",
493 "//components/policy/core/common:unit_tests", 500 "//components/policy/core/common:unit_tests",
494 ] 501 ]
495 } 502 }
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 ] 696 ]
690 if (!is_ios) { 697 if (!is_ios) {
691 deps += [ 698 deps += [
692 "//base", 699 "//base",
693 "//base/test:test_support_perf", 700 "//base/test:test_support_perf",
694 "//content/test:test_support", 701 "//content/test:test_support",
695 "//components/visitedlink/browser", 702 "//components/visitedlink/browser",
696 ] 703 ]
697 } 704 }
698 } 705 }
OLDNEW
« no previous file with comments | « chromeos/chromeos.gyp ('k') | components/arc.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698