| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 'chrome_android_paks.gypi', # Included for the list of pak resources. | 9 'chrome_android_paks.gypi', # Included for the list of pak resources. |
| 10 ], | 10 ], |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 '../media/media.gyp:media_java', | 46 '../media/media.gyp:media_java', |
| 47 'chrome.gyp:chrome_java', | 47 'chrome.gyp:chrome_java', |
| 48 'chrome_android_paks', | 48 'chrome_android_paks', |
| 49 'libchromiumtestshell', | 49 'libchromiumtestshell', |
| 50 ], | 50 ], |
| 51 'variables': { | 51 'variables': { |
| 52 'package_name': 'chromium_testshell', | 52 'package_name': 'chromium_testshell', |
| 53 'apk_name': 'ChromiumTestShell', | 53 'apk_name': 'ChromiumTestShell', |
| 54 'java_in_dir': 'android/testshell/java', | 54 'java_in_dir': 'android/testshell/java', |
| 55 'resource_dir': '../res', | 55 'resource_dir': '../res', |
| 56 'asset_location': '<(ant_build_out)/../assets/chrome', |
| 56 'native_libs_paths': [ '<(PRODUCT_DIR)/chromium_testshell/libs/<(android
_app_abi)/libchromiumtestshell.so', ], | 57 'native_libs_paths': [ '<(PRODUCT_DIR)/chromium_testshell/libs/<(android
_app_abi)/libchromiumtestshell.so', ], |
| 57 'additional_input_paths': [ '<@(chrome_android_pak_output_resources)', ]
, | 58 'additional_input_paths': [ '<@(chrome_android_pak_output_resources)', ]
, |
| 58 }, | 59 }, |
| 59 'actions': [ | 60 'actions': [ |
| 60 { | 61 { |
| 61 'action_name': 'copy_and_strip_so', | 62 'action_name': 'copy_and_strip_so', |
| 62 'inputs': ['<(SHARED_LIB_DIR)/libchromiumtestshell.so'], | 63 'inputs': ['<(SHARED_LIB_DIR)/libchromiumtestshell.so'], |
| 63 'outputs': ['<(PRODUCT_DIR)/chromium_testshell/libs/<(android_app_abi)
/libchromiumtestshell.so'], | 64 'outputs': ['<(PRODUCT_DIR)/chromium_testshell/libs/<(android_app_abi)
/libchromiumtestshell.so'], |
| 64 'action': [ | 65 'action': [ |
| 65 '<(android_strip)', | 66 '<(android_strip)', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 ], | 158 ], |
| 158 'copies': [ | 159 'copies': [ |
| 159 { | 160 { |
| 160 'destination': '<(chrome_android_pak_output_folder)', | 161 'destination': '<(chrome_android_pak_output_folder)', |
| 161 'files': [ '<@(chrome_android_pak_input_resources)' ], | 162 'files': [ '<@(chrome_android_pak_input_resources)' ], |
| 162 } | 163 } |
| 163 ], | 164 ], |
| 164 }, | 165 }, |
| 165 ], | 166 ], |
| 166 } | 167 } |
| OLD | NEW |