| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 if (!is_win && !is_mac) { | 207 if (!is_win && !is_mac) { |
| 208 deps -= [ "//components/wifi" ] | 208 deps -= [ "//components/wifi" ] |
| 209 } | 209 } |
| 210 | 210 |
| 211 if (!is_chromeos) { | 211 if (!is_chromeos) { |
| 212 deps -= [ | 212 deps -= [ |
| 213 "//components/pairing", | 213 "//components/pairing", |
| 214 "//components/wifi_sync", | 214 "//components/wifi_sync", |
| 215 ] | 215 ] |
| 216 } | 216 } |
| 217 |
| 218 if (is_chromeos && enable_arc) { |
| 219 deps += [ "//components/arc" ] |
| 220 } |
| 217 } | 221 } |
| 218 | 222 |
| 219 if (toolkit_views) { | 223 if (toolkit_views) { |
| 220 deps += [ "//components/constrained_window" ] | 224 deps += [ "//components/constrained_window" ] |
| 221 } | 225 } |
| 222 | 226 |
| 223 if (is_android) { | 227 if (is_android) { |
| 224 deps -= [ | 228 deps -= [ |
| 225 "//components/autofill/content/browser", # Blocked on content/blink. | 229 "//components/autofill/content/browser", # Blocked on content/blink. |
| 226 "//components/autofill/content/common", # Blocked on content. | 230 "//components/autofill/content/common", # Blocked on content. |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 "//ui/android:ui_java", | 471 "//ui/android:ui_java", |
| 468 ] | 472 ] |
| 469 | 473 |
| 470 if (enable_configuration_policy) { | 474 if (enable_configuration_policy) { |
| 471 apk_deps += [ "//components/policy/android:policy_java" ] | 475 apk_deps += [ "//components/policy/android:policy_java" ] |
| 472 } | 476 } |
| 473 } | 477 } |
| 474 if (is_chromeos) { | 478 if (is_chromeos) { |
| 475 deps += [ "//components/ownership:unit_tests" ] | 479 deps += [ "//components/ownership:unit_tests" ] |
| 476 } | 480 } |
| 481 if (is_chromeos && enable_arc) { |
| 482 deps += [ "//components/arc:unit_tests" ] |
| 483 } |
| 477 | 484 |
| 478 # TODO(GYP) need this target. | 485 # TODO(GYP) need this target. |
| 479 #'breakpad/app/crash_keys_win_unittest.cc', | 486 #'breakpad/app/crash_keys_win_unittest.cc', |
| 480 | 487 |
| 481 if (enable_configuration_policy) { | 488 if (enable_configuration_policy) { |
| 482 deps += [ | 489 deps += [ |
| 483 "//components/policy/core/browser:unit_tests", | 490 "//components/policy/core/browser:unit_tests", |
| 484 "//components/policy/core/common:unit_tests", | 491 "//components/policy/core/common:unit_tests", |
| 485 ] | 492 ] |
| 486 } | 493 } |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ] | 687 ] |
| 681 if (!is_ios) { | 688 if (!is_ios) { |
| 682 deps += [ | 689 deps += [ |
| 683 "//base", | 690 "//base", |
| 684 "//base/test:test_support_perf", | 691 "//base/test:test_support_perf", |
| 685 "//content/test:test_support", | 692 "//content/test:test_support", |
| 686 "//components/visitedlink/browser", | 693 "//components/visitedlink/browser", |
| 687 ] | 694 ] |
| 688 } | 695 } |
| 689 } | 696 } |
| OLD | NEW |