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 'variables': { |
| 13 'java_in_dir': '../../testing/android/reporter/java', |
| 14 }, |
| 15 'includes': [ |
| 16 '../../build/java.gypi', |
| 17 ], |
| 18 }, |
| 19 { |
| 20 'target_name': 'broker_java', |
| 21 'type': 'none', |
| 22 'dependencies': ['reporter_java'], |
| 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 'appurify_support.gyp:appurify_support_java', |
| 36 ], |
| 37 'variables': { |
| 38 'apk_name': 'OnDeviceInstrumentationDriver', |
| 39 'java_in_dir': '../../testing/android/driver/java', |
| 40 }, |
| 41 'includes': [ |
| 42 '../../build/java_apk.gypi', |
| 43 ], |
| 44 }, |
| 45 ], |
| 46 }], |
| 47 ], |
| 48 } |
OLD | NEW |