| 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 'package_name': 'chromium_testshell', | 7 'package_name': 'chromium_testshell', |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'chrome_android_paks.gypi', # Included for the list of pak resources. | 10 'chrome_android_paks.gypi', # Included for the list of pak resources. |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'includes': [ '../build/java_apk.gypi', ], | 72 'includes': [ '../build/java_apk.gypi', ], |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 'target_name': 'chromium_testshell_jni_headers', | 75 'target_name': 'chromium_testshell_jni_headers', |
| 76 'type': 'none', | 76 'type': 'none', |
| 77 'sources': [ | 77 'sources': [ |
| 78 'android/testshell/java/src/org/chromium/chrome/testshell/TestShellTab.j
ava', | 78 'android/testshell/java/src/org/chromium/chrome/testshell/TestShellTab.j
ava', |
| 79 ], | 79 ], |
| 80 'variables': { | 80 'variables': { |
| 81 'jni_gen_package': 'chromium_testshell', | 81 'jni_gen_package': 'chromium_testshell', |
| 82 'jni_generator_ptr_type': 'long', |
| 82 }, | 83 }, |
| 83 'includes': [ '../build/jni_generator.gypi' ], | 84 'includes': [ '../build/jni_generator.gypi' ], |
| 84 }, | 85 }, |
| 85 { | 86 { |
| 86 # chromium_testshell creates a .jar as a side effect. Any java targets | 87 # chromium_testshell creates a .jar as a side effect. Any java targets |
| 87 # that need that .jar in their classpath should depend on this target, | 88 # that need that .jar in their classpath should depend on this target, |
| 88 # chromium_testshell_java. Dependents of chromium_testshell receive its | 89 # chromium_testshell_java. Dependents of chromium_testshell receive its |
| 89 # jar path in the variable 'apk_output_jar_path'. | 90 # jar path in the variable 'apk_output_jar_path'. |
| 90 'target_name': 'chromium_testshell_java', | 91 'target_name': 'chromium_testshell_java', |
| 91 'type': 'none', | 92 'type': 'none', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 { | 139 { |
| 139 'destination': '<(chrome_android_pak_output_folder)', | 140 'destination': '<(chrome_android_pak_output_folder)', |
| 140 'files': [ | 141 'files': [ |
| 141 '<@(chrome_android_pak_input_resources)', | 142 '<@(chrome_android_pak_input_resources)', |
| 142 ], | 143 ], |
| 143 } | 144 } |
| 144 ], | 145 ], |
| 145 }, | 146 }, |
| 146 ], | 147 ], |
| 147 } | 148 } |
| OLD | NEW |