Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1491)

Unified Diff: testing/android/on_device_instrumentation.gyp

Issue 1034053002: [Android] Add an out-of-app instrumentation driver APK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: the rename Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/android/on_device_instrumentation.gyp
diff --git a/testing/android/on_device_instrumentation.gyp b/testing/android/on_device_instrumentation.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..7f39a4a8386379da6533bcc662eb5d03822a96df
--- /dev/null
+++ b/testing/android/on_device_instrumentation.gyp
@@ -0,0 +1,49 @@
+
Yaron 2015/04/07 15:39:04 These files need copyrights
jbudorick 2015/04/07 19:24:45 Done.
+{
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'reporter_java',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/reporter',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java.gypi',
+ ],
+ },
+ {
+ 'target_name': 'passenger_java',
+ 'type': 'none',
+ 'dependencies': ['reporter_java'],
+ 'variables': {
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/passenger',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java.gypi',
+ ],
+ },
+ {
+ 'target_name': 'driver_apk',
+ 'type': 'none',
+ 'dependencies': [
+ 'passenger_java',
+ 'test_support.gyp:test_support_java',
+ ],
+ 'variables': {
+ 'android_manifest_path': 'java/src/org/chromium/test/driver/AndroidManifest.xml',
+ 'apk_name': 'OnDeviceInstrumentationDriver',
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/driver',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java_apk.gypi',
+ ],
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698