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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'action': [ | 121 'action': [ |
122 '../testing/android/generate_native_test.py', | 122 '../testing/android/generate_native_test.py', |
123 '--native_library', | 123 '--native_library', |
124 '<(PRODUCT_DIR)/lib.target/libipc_tests.so', | 124 '<(PRODUCT_DIR)/lib.target/libipc_tests.so', |
125 # TODO(jrg): find a better way to specify jar | 125 # TODO(jrg): find a better way to specify jar |
126 # dependencies. Hard coding seems fragile. | 126 # dependencies. Hard coding seems fragile. |
127 '--jar', | 127 '--jar', |
128 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | 128 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
129 '--output', | 129 '--output', |
130 '<(PRODUCT_DIR)/ipc_tests_apk', | 130 '<(PRODUCT_DIR)/ipc_tests_apk', |
| 131 '--app_abi', |
| 132 '<(android_app_abi)', |
131 '--ant-args', | 133 '--ant-args', |
132 '-DPRODUCT_DIR=<(PRODUCT_DIR)', | 134 '-DPRODUCT_DIR=<(PRODUCT_DIR)', |
133 '--ant-compile' | 135 '--ant-compile' |
134 ], | 136 ], |
135 }, | 137 }, |
136 ], | 138 ], |
137 }], | 139 }], |
138 }], | 140 }], |
139 ], | 141 ], |
140 } | 142 } |
OLD | NEW |