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 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "//components/version_ui", | 42 "//components/version_ui", |
43 ] | 43 ] |
44 | 44 |
45 if (!is_ios) { | 45 if (!is_ios) { |
46 deps += [ | 46 deps += [ |
47 "//components/dom_distiller/core", | 47 "//components/dom_distiller/core", |
48 "//components/enhanced_bookmarks", | 48 "//components/enhanced_bookmarks", |
49 "//components/certificate_reporting", | 49 "//components/certificate_reporting", |
50 "//components/cdm/browser", | 50 "//components/cdm/browser", |
51 "//components/about_handler", | 51 "//components/about_handler", |
| 52 "//components/arc", |
52 "//components/auto_login_parser", | 53 "//components/auto_login_parser", |
53 "//components/autofill/content/browser", | 54 "//components/autofill/content/browser", |
54 "//components/autofill/content/common", | 55 "//components/autofill/content/common", |
55 "//components/autofill/content/renderer", | 56 "//components/autofill/content/renderer", |
56 "//components/bubble", | 57 "//components/bubble", |
57 "//components/captive_portal", | 58 "//components/captive_portal", |
58 "//components/cdm/browser", | 59 "//components/cdm/browser", |
59 "//components/cdm/common", | 60 "//components/cdm/common", |
60 "//components/cdm/renderer", | 61 "//components/cdm/renderer", |
61 "//components/cloud_devices/common", | 62 "//components/cloud_devices/common", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 "//components/storage_monitor", | 200 "//components/storage_monitor", |
200 ] | 201 ] |
201 } | 202 } |
202 | 203 |
203 if (!is_win && !is_mac) { | 204 if (!is_win && !is_mac) { |
204 deps -= [ "//components/wifi" ] | 205 deps -= [ "//components/wifi" ] |
205 } | 206 } |
206 | 207 |
207 if (!is_chromeos) { | 208 if (!is_chromeos) { |
208 deps -= [ | 209 deps -= [ |
| 210 "//components/arc", |
209 "//components/pairing", | 211 "//components/pairing", |
210 "//components/wifi_sync", | 212 "//components/wifi_sync", |
211 ] | 213 ] |
212 } | 214 } |
213 } | 215 } |
214 | 216 |
215 if (toolkit_views) { | 217 if (toolkit_views) { |
216 deps += [ "//components/constrained_window" ] | 218 deps += [ "//components/constrained_window" ] |
217 } | 219 } |
218 | 220 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 "//components/signin/core/browser/android:java", | 463 "//components/signin/core/browser/android:java", |
462 "//content/public/android:content_java", | 464 "//content/public/android:content_java", |
463 "//ui/android:ui_java", | 465 "//ui/android:ui_java", |
464 ] | 466 ] |
465 | 467 |
466 if (enable_configuration_policy) { | 468 if (enable_configuration_policy) { |
467 apk_deps += [ "//components/policy/android:policy_java" ] | 469 apk_deps += [ "//components/policy/android:policy_java" ] |
468 } | 470 } |
469 } | 471 } |
470 if (is_chromeos) { | 472 if (is_chromeos) { |
471 deps += [ "//components/ownership:unit_tests" ] | 473 deps += [ |
| 474 "//components/arc:unit_tests", |
| 475 "//components/ownership:unit_tests", |
| 476 ] |
472 } | 477 } |
473 | 478 |
474 # TODO(GYP) need this target. | 479 # TODO(GYP) need this target. |
475 #'breakpad/app/crash_keys_win_unittest.cc', | 480 #'breakpad/app/crash_keys_win_unittest.cc', |
476 | 481 |
477 if (enable_configuration_policy) { | 482 if (enable_configuration_policy) { |
478 deps += [ | 483 deps += [ |
479 "//components/policy/core/browser:unit_tests", | 484 "//components/policy/core/browser:unit_tests", |
480 "//components/policy/core/common:unit_tests", | 485 "//components/policy/core/common:unit_tests", |
481 ] | 486 ] |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 ] | 632 ] |
628 if (!is_ios) { | 633 if (!is_ios) { |
629 deps += [ | 634 deps += [ |
630 "//base", | 635 "//base", |
631 "//base/test:test_support_perf", | 636 "//base/test:test_support_perf", |
632 "//content/test:test_support", | 637 "//content/test:test_support", |
633 "//components/visitedlink/browser", | 638 "//components/visitedlink/browser", |
634 ] | 639 ] |
635 } | 640 } |
636 } | 641 } |
OLD | NEW |