| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'type': 'none', | 44 'type': 'none', |
| 45 'dependencies': [ | 45 'dependencies': [ |
| 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 'manifest_package_name': 'org.chromium.chrome.testshell', |
| 54 'java_in_dir': 'android/testshell/java', | 55 'java_in_dir': 'android/testshell/java', |
| 55 'resource_dir': '../res', | 56 'resource_dir': '../res', |
| 56 'native_libs_paths': [ '<(PRODUCT_DIR)/chromium_testshell/libs/<(android
_app_abi)/libchromiumtestshell.so', ], | 57 'native_libs_paths': [ '<(SHARED_LIB_DIR)/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 { | |
| 61 'action_name': 'copy_and_strip_so', | |
| 62 'inputs': ['<(SHARED_LIB_DIR)/libchromiumtestshell.so'], | |
| 63 'outputs': ['<(PRODUCT_DIR)/chromium_testshell/libs/<(android_app_abi)
/libchromiumtestshell.so'], | |
| 64 'action': [ | |
| 65 '<(android_strip)', | |
| 66 '--strip-unneeded', | |
| 67 '<@(_inputs)', | |
| 68 '-o', | |
| 69 '<@(_outputs)', | |
| 70 ], | |
| 71 }, | |
| 72 ], | |
| 73 'includes': [ '../build/java_apk.gypi', ], | 60 'includes': [ '../build/java_apk.gypi', ], |
| 74 }, | 61 }, |
| 75 { | 62 { |
| 76 'target_name': 'chromium_testshell_jni_headers', | 63 'target_name': 'chromium_testshell_jni_headers', |
| 77 'type': 'none', | 64 'type': 'none', |
| 78 'sources': [ | 65 'sources': [ |
| 79 'android/testshell/java/src/org/chromium/chrome/testshell/TabManager.jav
a', | 66 'android/testshell/java/src/org/chromium/chrome/testshell/TabManager.jav
a', |
| 80 ], | 67 ], |
| 81 'variables': { | 68 'variables': { |
| 82 'jni_gen_dir': 'chromium_testshell', | 69 'jni_gen_dir': 'chromium_testshell', |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 ], | 144 ], |
| 158 'copies': [ | 145 'copies': [ |
| 159 { | 146 { |
| 160 'destination': '<(chrome_android_pak_output_folder)', | 147 'destination': '<(chrome_android_pak_output_folder)', |
| 161 'files': [ '<@(chrome_android_pak_input_resources)' ], | 148 'files': [ '<@(chrome_android_pak_input_resources)' ], |
| 162 } | 149 } |
| 163 ], | 150 ], |
| 164 }, | 151 }, |
| 165 ], | 152 ], |
| 166 } | 153 } |
| OLD | NEW |