blob: 05bafab75d827310b42f3f6e858fe984cb57820c [file] [log] [blame]
[email protected]a44d1212012-05-25 20:17:491# Copyright (c) 2012 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# This file is meant to be included into a target to provide a rule
6# to build APK based test suites.
7#
8# To use this, create a gyp target with the following form:
9# {
10# 'target_name': 'test_suite_name_apk',
11# 'type': 'none',
12# 'variables': {
13# 'test_suite_name': 'test_suite_name', # string
[email protected]a44d1212012-05-25 20:17:4914# 'input_jars_paths': ['/path/to/test_suite.jar', ... ], # list
15# },
16# 'includes': ['path/to/this/gypi/file'],
17# }
18#
19
20{
[email protected]4afef6e2012-12-05 02:32:2321 'dependencies': [
22 '<(DEPTH)/base/base.gyp:base_java',
jbudorick8c07d892014-10-13 11:39:4823 '<(DEPTH)/build/android/pylib/device/commands/commands.gyp:chromium_commands',
jbudorick335cbe512015-01-06 22:26:5224 '<(DEPTH)/build/android/pylib/remote/device/dummy/dummy.gyp:remote_device_dummy_apk',
[email protected]7a4bb192012-12-18 14:15:2825 '<(DEPTH)/tools/android/android_tools.gyp:android_tools',
[email protected]4afef6e2012-12-05 02:32:2326 ],
[email protected]d82d7692013-04-06 00:14:3927 'conditions': [
[email protected]87a80852014-05-17 16:09:5828 ['OS == "android"', {
[email protected]d82d7692013-04-06 00:14:3929 'variables': {
30 # These are used to configure java_apk.gypi included below.
31 'apk_name': '<(test_suite_name)',
32 'intermediate_dir': '<(PRODUCT_DIR)/<(test_suite_name)_apk',
33 'final_apk_path': '<(intermediate_dir)/<(test_suite_name)-debug.apk',
[email protected]fd895ff2013-04-11 04:47:1034 'java_in_dir': '<(DEPTH)/testing/android/java',
[email protected]d82d7692013-04-06 00:14:3935 'native_lib_target': 'lib<(test_suite_name)',
[email protected]188a91a32013-04-11 22:05:4736 # TODO(yfriedman, cjhopman): Support managed installs for gtests.
37 'gyp_managed_install': 0,
[email protected]d82d7692013-04-06 00:14:3938 },
[email protected]d82d7692013-04-06 00:14:3939 'includes': [ 'java_apk.gypi' ],
[email protected]87a80852014-05-17 16:09:5840 }], # 'OS == "android"
[email protected]d82d7692013-04-06 00:14:3941 ], # conditions
[email protected]a44d1212012-05-25 20:17:4942}