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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1
2 {
3 'conditions': [
4 ['OS=="android"', {
5 'targets': [
6 {
7 'target_name': 'outstrumentation_reporter_java',
8 'type': 'none',
9 'variables': {
10 'java_in_dir': '../../testing/android/java/src/org/chromium/test/out strumentation/reporter',
11 'java_in_dir_suffix': '',
12 },
13 'includes': [
14 '../../build/java.gypi',
15 ],
16 },
17 {
18 'target_name': 'outstrumentation_slave_java',
19 'type': 'none',
20 'dependencies': ['outstrumentation_reporter_java'],
21 'variables': {
22 'java_in_dir': '../../testing/android/java/src/org/chromium/test/out strumentation/slave',
23 'java_in_dir_suffix': '',
24 },
25 'includes': [
26 '../../build/java.gypi',
27 ],
28 },
29 {
30 'target_name': 'outstrumentation_apk',
31 'type': 'none',
32 'dependencies': [
33 'outstrumentation_slave_java',
34 'test_support.gyp:test_support_java',
35 ],
36 'variables': {
37 'android_manifest_path': 'java/src/org/chromium/test/outstrumentatio n/master/AndroidManifest.xml',
38 'apk_name': 'Outstrumentation',
39 'java_in_dir': '../../testing/android/java/src/org/chromium/test/out strumentation/master',
40 'java_in_dir_suffix': '',
41 },
42 'includes': [
43 '../../build/java_apk.gypi',
44 ],
45 },
46 ],
47 }],
48 ],
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698