forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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}
- Loading branch information
cjhopman
authored and
Commit bot
committed
Oct 16, 2014
1 parent
042b047
commit 4fe114e
Showing
8 changed files
with
170 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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_shell_test_apk | ||
android_resources("chromedriver_webview_shell_resources") { | ||
resource_dirs = [ "java/res" ] | ||
android_manifest = "java/AndroidManifest.xml" | ||
} | ||
android_apk("chromedriver_webview_shell_apk") { | ||
apk_name = "ChromeDriverWebViewShell" | ||
deps = [ ":chromedriver_webview_shell_resources" ] | ||
DEPRECATED_java_in_dir = "java/src" | ||
android_manifest = "java/AndroidManifest.xml" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters