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', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 }, | 49 }, |
50 'actions': [ | 50 'actions': [ |
51 { | 51 { |
52 'action_name': 'apk_<(test_suite_name)', | 52 'action_name': 'apk_<(test_suite_name)', |
53 'message': 'Building <(test_suite_name) test apk.', | 53 'message': 'Building <(test_suite_name) test apk.', |
54 'inputs': [ | 54 'inputs': [ |
55 '<(DEPTH)/testing/android/AndroidManifest.xml', | 55 '<(DEPTH)/testing/android/AndroidManifest.xml', |
56 '<(DEPTH)/testing/android/generate_native_test.py', | 56 '<(DEPTH)/testing/android/generate_native_test.py', |
57 '<(input_shlib_path)', | 57 '<(input_shlib_path)', |
58 '>@(input_jars_paths)', | 58 '>@(input_jars_paths)', |
| 59 '<!@(find <(DEPTH)/testing/android/java)', |
59 ], | 60 ], |
60 'outputs': [ | 61 'outputs': [ |
61 '<(generate_native_test_stamp)', | 62 '<(generate_native_test_stamp)', |
62 '<(android_manifest_path)', | 63 '<(android_manifest_path)', |
63 ], | 64 ], |
64 'action': [ | 65 'action': [ |
65 '<(DEPTH)/testing/android/generate_native_test.py', | 66 '<(DEPTH)/testing/android/generate_native_test.py', |
66 '--native_library', | 67 '--native_library', |
67 '<(input_shlib_path)', | 68 '<(input_shlib_path)', |
68 '--output', | 69 '--output', |
69 '<(generator_intermediate_dir)', | 70 '<(generator_intermediate_dir)', |
70 '--strip-binary=<(android_strip)', | 71 '--strip-binary=<(android_strip)', |
71 '--app_abi', | 72 '--app_abi', |
72 '<(android_app_abi)', | 73 '<(android_app_abi)', |
73 '--stamp-file', | 74 '--stamp-file', |
74 '<(generate_native_test_stamp)', | 75 '<(generate_native_test_stamp)', |
75 '--no-compile', | 76 '--no-compile', |
76 ], | 77 ], |
77 }, | 78 }, |
78 ], | 79 ], |
79 'includes': [ 'java_apk.gypi' ], | 80 'includes': [ 'java_apk.gypi' ], |
80 }], # 'OS == "android" and gtest_target_type == "shared_library" | 81 }], # 'OS == "android" and gtest_target_type == "shared_library" |
81 ], # conditions | 82 ], # conditions |
82 } | 83 } |
OLD | NEW |