OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |