OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file is meant to be included into a target to provide a rule | 5 # This file is meant to be included into a target to provide a rule |
6 # to build APK based test suites. | 6 # to build APK based test suites. |
7 # | 7 # |
8 # To use this, create a gyp target with the following form: | 8 # To use this, create a gyp target with the following form: |
9 # { | 9 # { |
10 # 'target_name': 'test_suite_name_apk', | 10 # 'target_name': 'test_suite_name_apk', |
11 # 'type': 'none', | 11 # 'type': 'none', |
12 # 'variables': { | 12 # 'variables': { |
13 # 'test_suite_name': 'test_suite_name', # string | 13 # 'test_suite_name': 'test_suite_name', # string |
14 # 'input_jars_paths': ['/path/to/test_suite.jar', ... ], # list | 14 # 'input_jars_paths': ['/path/to/test_suite.jar', ... ], # list |
15 # }, | 15 # }, |
16 # 'includes': ['path/to/this/gypi/file'], | 16 # 'includes': ['path/to/this/gypi/file'], |
17 # } | 17 # } |
18 # | 18 # |
19 | 19 |
20 { | 20 { |
21 'dependencies': [ | 21 'dependencies': [ |
22 '<(DEPTH)/base/base.gyp:base_java', | 22 '<(DEPTH)/base/base.gyp:base_java', |
23 '<(DEPTH)/build/android/pylib/device/commands/commands.gyp:chromium_commands
', | 23 '<(DEPTH)/build/android/pylib/device/commands/commands.gyp:chromium_commands
', |
24 '<(DEPTH)/build/android/pylib/remote/device/dummy/dummy.gyp:require_remote_d
evice_dummy_apk', | 24 '<(DEPTH)/build/android/pylib/remote/device/dummy/dummy.gyp:require_remote_d
evice_dummy_apk', |
25 '<(DEPTH)/testing/android/appurify_support.gyp:appurify_support_java', | 25 '<(DEPTH)/testing/android/appurify_support.gyp:appurify_support_java', |
26 '<(DEPTH)/testing/android/on_device_instrumentation.gyp:reporter_java', | 26 '<(DEPTH)/testing/android/on_device_instrumentation.gyp:reporter_java', |
| 27 '<(DEPTH)/testing/android/native_test.gyp:native_test_java', |
27 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', | 28 '<(DEPTH)/tools/android/android_tools.gyp:android_tools', |
28 ], | 29 ], |
29 'conditions': [ | 30 'conditions': [ |
30 ['OS == "android"', { | 31 ['OS == "android"', { |
31 'variables': { | 32 'variables': { |
32 # These are used to configure java_apk.gypi included below. | 33 # These are used to configure java_apk.gypi included below. |
33 'test_type': 'gtest', | 34 'test_type': 'gtest', |
34 'apk_name': '<(test_suite_name)', | 35 'apk_name': '<(test_suite_name)', |
35 'intermediate_dir': '<(PRODUCT_DIR)/<(test_suite_name)_apk', | 36 'intermediate_dir': '<(PRODUCT_DIR)/<(test_suite_name)_apk', |
36 'generated_src_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/<(test_suite_name)_
jinja', ], | 37 'generated_src_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/<(test_suite_name)_
jinja', ], |
37 'final_apk_path': '<(intermediate_dir)/<(test_suite_name)-debug.apk', | 38 'final_apk_path': '<(intermediate_dir)/<(test_suite_name)-debug.apk', |
38 'java_in_dir': '<(DEPTH)/testing/android/native_test/java', | 39 'java_in_dir': '<(DEPTH)/build/android/empty', |
39 'native_lib_target': 'lib<(test_suite_name)', | 40 'native_lib_target': 'lib<(test_suite_name)', |
40 # TODO(yfriedman, cjhopman): Support managed installs for gtests. | 41 # TODO(yfriedman, cjhopman): Support managed installs for gtests. |
41 'gyp_managed_install': 0, | 42 'gyp_managed_install': 0, |
42 'variables': { | 43 'variables': { |
43 'use_native_activity%': "false", | 44 'use_native_activity%': "false", |
44 'android_manifest_path%': '', | 45 'android_manifest_path%': '', |
45 }, | 46 }, |
46 'use_native_activity%': '<(use_native_activity)', | 47 'use_native_activity%': '<(use_native_activity)', |
47 'jinja_variables': [ | 48 'jinja_variables': [ |
48 'native_library_name=<(test_suite_name)', | 49 'native_library_name=<(test_suite_name)', |
(...skipping 24 matching lines...) Expand all Loading... |
73 'jinja_inputs': '<(manifest_template)/AndroidManifest.xml.jinja2', | 74 'jinja_inputs': '<(manifest_template)/AndroidManifest.xml.jinja2', |
74 'jinja_output': '<(android_manifest_path)', | 75 'jinja_output': '<(android_manifest_path)', |
75 }, | 76 }, |
76 'includes': ['android/jinja_template.gypi'], | 77 'includes': ['android/jinja_template.gypi'], |
77 }], | 78 }], |
78 ], | 79 ], |
79 'includes': [ 'java_apk.gypi', 'android/test_runner.gypi' ], | 80 'includes': [ 'java_apk.gypi', 'android/test_runner.gypi' ], |
80 }], # 'OS == "android" | 81 }], # 'OS == "android" |
81 ], # conditions | 82 ], # conditions |
82 } | 83 } |
OLD | NEW |