OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/android/rules.gni") |
| 6 |
| 7 |
| 8 # GYP: //chrome/chrome_tests.gypi:chrome_java_test_support |
| 9 android_library("chrome_java_test_support") { |
| 10 testonly = true |
| 11 DEPRECATED_java_in_dir = "javatests/src" |
| 12 deps = [ |
| 13 "//base:base_java", |
| 14 "//base:base_java_test_support", |
| 15 "//chrome/android:chrome_java", |
| 16 "//chrome/android:chrome_java_resources", |
| 17 "//components/invalidation:java", |
| 18 "//content/public/android:content_java", |
| 19 "//content/public/test/android:content_java_test_support", |
| 20 "//sync/android:sync_java", |
| 21 "//sync:sync_java_test_support", |
| 22 ] |
| 23 } |
OLD | NEW |