OLD | NEW |
(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 } |
OLD | NEW |