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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "//components/version_ui", | 47 "//components/version_ui", |
48 ] | 48 ] |
49 | 49 |
50 if (!is_ios) { | 50 if (!is_ios) { |
51 deps += [ | 51 deps += [ |
52 "//components/dom_distiller/core", | 52 "//components/dom_distiller/core", |
53 "//components/enhanced_bookmarks", | 53 "//components/enhanced_bookmarks", |
54 "//components/certificate_reporting", | 54 "//components/certificate_reporting", |
55 "//components/cdm/browser", | 55 "//components/cdm/browser", |
56 "//components/about_handler", | 56 "//components/about_handler", |
| 57 "//components/arc", |
57 "//components/auto_login_parser", | 58 "//components/auto_login_parser", |
58 "//components/autofill/content/browser", | 59 "//components/autofill/content/browser", |
59 "//components/autofill/content/common", | 60 "//components/autofill/content/common", |
60 "//components/autofill/content/renderer", | 61 "//components/autofill/content/renderer", |
61 "//components/bubble", | 62 "//components/bubble", |
62 "//components/captive_portal", | 63 "//components/captive_portal", |
63 "//components/cdm/browser", | 64 "//components/cdm/browser", |
64 "//components/cdm/common", | 65 "//components/cdm/common", |
65 "//components/cdm/renderer", | 66 "//components/cdm/renderer", |
66 "//components/cloud_devices/common", | 67 "//components/cloud_devices/common", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "//components/storage_monitor", | 204 "//components/storage_monitor", |
204 ] | 205 ] |
205 } | 206 } |
206 | 207 |
207 if (!is_win && !is_mac) { | 208 if (!is_win && !is_mac) { |
208 deps -= [ "//components/wifi" ] | 209 deps -= [ "//components/wifi" ] |
209 } | 210 } |
210 | 211 |
211 if (!is_chromeos) { | 212 if (!is_chromeos) { |
212 deps -= [ | 213 deps -= [ |
| 214 "//components/arc", |
213 "//components/pairing", | 215 "//components/pairing", |
214 "//components/wifi_sync", | 216 "//components/wifi_sync", |
215 ] | 217 ] |
216 } | 218 } |
217 } | 219 } |
218 | 220 |
219 if (toolkit_views) { | 221 if (toolkit_views) { |
220 deps += [ "//components/constrained_window" ] | 222 deps += [ "//components/constrained_window" ] |
221 } | 223 } |
222 | 224 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 "//components/signin/core/browser/android:java", | 467 "//components/signin/core/browser/android:java", |
466 "//content/public/android:content_java", | 468 "//content/public/android:content_java", |
467 "//ui/android:ui_java", | 469 "//ui/android:ui_java", |
468 ] | 470 ] |
469 | 471 |
470 if (enable_configuration_policy) { | 472 if (enable_configuration_policy) { |
471 apk_deps += [ "//components/policy/android:policy_java" ] | 473 apk_deps += [ "//components/policy/android:policy_java" ] |
472 } | 474 } |
473 } | 475 } |
474 if (is_chromeos) { | 476 if (is_chromeos) { |
475 deps += [ "//components/ownership:unit_tests" ] | 477 deps += [ |
| 478 "//components/arc:unit_tests", |
| 479 "//components/ownership:unit_tests", |
| 480 ] |
476 } | 481 } |
477 | 482 |
478 # TODO(GYP) need this target. | 483 # TODO(GYP) need this target. |
479 #'breakpad/app/crash_keys_win_unittest.cc', | 484 #'breakpad/app/crash_keys_win_unittest.cc', |
480 | 485 |
481 if (enable_configuration_policy) { | 486 if (enable_configuration_policy) { |
482 deps += [ | 487 deps += [ |
483 "//components/policy/core/browser:unit_tests", | 488 "//components/policy/core/browser:unit_tests", |
484 "//components/policy/core/common:unit_tests", | 489 "//components/policy/core/common:unit_tests", |
485 ] | 490 ] |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 ] | 685 ] |
681 if (!is_ios) { | 686 if (!is_ios) { |
682 deps += [ | 687 deps += [ |
683 "//base", | 688 "//base", |
684 "//base/test:test_support_perf", | 689 "//base/test:test_support_perf", |
685 "//content/test:test_support", | 690 "//content/test:test_support", |
686 "//components/visitedlink/browser", | 691 "//components/visitedlink/browser", |
687 ] | 692 ] |
688 } | 693 } |
689 } | 694 } |
OLD | NEW |