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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1
Yaron 2015/04/07 15:39:04 These files need copyrights
jbudorick 2015/04/07 19:24:45 Done.
2 {
3 'conditions': [
4 ['OS=="android"', {
5 'targets': [
6 {
7 'target_name': 'reporter_java',
8 'type': 'none',
9 'variables': {
10 'java_in_dir': '../../testing/android/java/src/org/chromium/test/rep orter',
11 'java_in_dir_suffix': '',
12 },
13 'includes': [
14 '../../build/java.gypi',
15 ],
16 },
17 {
18 'target_name': 'passenger_java',
19 'type': 'none',
20 'dependencies': ['reporter_java'],
21 'variables': {
22 'java_in_dir': '../../testing/android/java/src/org/chromium/test/pas senger',
23 'java_in_dir_suffix': '',
24 },
25 'includes': [
26 '../../build/java.gypi',
27 ],
28 },
29 {
30 'target_name': 'driver_apk',
31 'type': 'none',
32 'dependencies': [
33 'passenger_java',
34 'test_support.gyp:test_support_java',
35 ],
36 'variables': {
37 'android_manifest_path': 'java/src/org/chromium/test/driver/AndroidM anifest.xml',
38 'apk_name': 'OnDeviceInstrumentationDriver',
39 'java_in_dir': '../../testing/android/java/src/org/chromium/test/dri ver',
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