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

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: fix unittest_apk gn template 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 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 ['OS=="android"', {
8 'targets': [
9 {
10 'target_name': 'reporter_java',
11 'type': 'none',
12 'dependencies': ['../../base/base.gyp:base_java'],
13 'variables': {
14 'java_in_dir': '../../testing/android/reporter/java',
15 },
16 'includes': [
17 '../../build/java.gypi',
18 ],
19 },
20 {
21 'target_name': 'broker_java',
22 'type': 'none',
23 'variables': {
24 'java_in_dir': '../../testing/android/broker/java',
25 },
26 'includes': [
27 '../../build/java.gypi',
28 ],
29 },
30 {
31 'target_name': 'driver_apk',
32 'type': 'none',
33 'dependencies': [
34 'broker_java',
35 'reporter_java',
36 'appurify_support.gyp:appurify_support_java',
37 ],
38 'variables': {
39 'apk_name': 'OnDeviceInstrumentationDriver',
40 'java_in_dir': '../../testing/android/driver/java',
41 },
42 'includes': [
43 '../../build/java_apk.gypi',
44 ],
45 },
46 ],
47 }],
48 ],
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698