summaryrefslogtreecommitdiffstats
path: root/chrome/test/android
diff options
context:
space:
mode:
authorcjhopman <cjhopman@chromium.org>2014-10-16 11:02:23 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-16 18:03:16 +0000
commit4fe114e79020c97813df6d36dfb156b834749126 (patch)
tree549f30b741a0cc05edb62d952a081f5efedc49f9 /chrome/test/android
parent042b047e4671d1af0cc71db959731f95728b344f (diff)
downloadchromium_src-4fe114e79020c97813df6d36dfb156b834749126.zip
chromium_src-4fe114e79020c97813df6d36dfb156b834749126.tar.gz
chromium_src-4fe114e79020c97813df6d36dfb156b834749126.tar.bz2
Add ChromeShellTestApk and other chrome/ test stuff
Adds these targets: //chrome/android:chrome_javatests //chrome/android:chrome_shell_test_java //chrome/android:chrome_shell_test_apk //chrome/android:chrome_sync_shell_test_apk //chrome/android:uiautomator_tests_java //chrome/android:uiautomator_tests //chrome/test/android:chrome_java_test_support //chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk //chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_resources depends on https://codereview.chromium.org/570203002/ TBR=ben BUG=359249 Review URL: https://codereview.chromium.org/586383002 Cr-Commit-Position: refs/heads/master@{#299926}
Diffstat (limited to 'chrome/test/android')
-rw-r--r--chrome/test/android/BUILD.gn23
1 files changed, 23 insertions, 0 deletions
diff --git a/chrome/test/android/BUILD.gn b/chrome/test/android/BUILD.gn
new file mode 100644
index 0000000..30106ec
--- /dev/null
+++ b/chrome/test/android/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/android/rules.gni")
+
+
+# GYP: //chrome/chrome_tests.gypi:chrome_java_test_support
+android_library("chrome_java_test_support") {
+ testonly = true
+ DEPRECATED_java_in_dir = "javatests/src"
+ deps = [
+ "//base:base_java",
+ "//base:base_java_test_support",
+ "//chrome/android:chrome_java",
+ "//chrome/android:chrome_java_resources",
+ "//components/invalidation:java",
+ "//content/public/android:content_java",
+ "//content/public/test/android:content_java_test_support",
+ "//sync/android:sync_java",
+ "//sync:sync_java_test_support",
+ ]
+}