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

Unified Diff: testing/android/outstrumentation.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: Created 5 years, 9 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/outstrumentation.gyp
diff --git a/testing/android/outstrumentation.gyp b/testing/android/outstrumentation.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..6d5c45ef8fa03e81737a37a80f5450bda3a90dbc
--- /dev/null
+++ b/testing/android/outstrumentation.gyp
@@ -0,0 +1,49 @@
+
+{
+ 'conditions': [
+ ['OS=="android"', {
+ 'targets': [
+ {
+ 'target_name': 'outstrumentation_reporter_java',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/outstrumentation/reporter',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java.gypi',
+ ],
+ },
+ {
+ 'target_name': 'outstrumentation_slave_java',
+ 'type': 'none',
+ 'dependencies': ['outstrumentation_reporter_java'],
+ 'variables': {
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/outstrumentation/slave',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java.gypi',
+ ],
+ },
+ {
+ 'target_name': 'outstrumentation_apk',
+ 'type': 'none',
+ 'dependencies': [
+ 'outstrumentation_slave_java',
+ 'test_support.gyp:test_support_java',
+ ],
+ 'variables': {
+ 'android_manifest_path': 'java/src/org/chromium/test/outstrumentation/master/AndroidManifest.xml',
+ 'apk_name': 'Outstrumentation',
+ 'java_in_dir': '../../testing/android/java/src/org/chromium/test/outstrumentation/master',
+ 'java_in_dir_suffix': '',
+ },
+ 'includes': [
+ '../../build/java_apk.gypi',
+ ],
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698