| 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'android_webview_apk', | 7 'target_name': 'android_webview_apk', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'libwebviewchromium', | 10 'libwebviewchromium', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 }, | 124 }, |
| 125 { | 125 { |
| 126 'target_name': 'android_webview_unittests_jni', | 126 'target_name': 'android_webview_unittests_jni', |
| 127 'type': 'none', | 127 'type': 'none', |
| 128 'sources': [ | 128 'sources': [ |
| 129 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/InputStreamUnittest.java', | 129 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/InputStreamUnittest.java', |
| 130 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/MockAwContentsClientBridge.java', | 130 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/MockAwContentsClientBridge.java', |
| 131 ], | 131 ], |
| 132 'variables': { | 132 'variables': { |
| 133 'jni_gen_package': 'android_webview_unittests', | 133 'jni_gen_package': 'android_webview_unittests', |
| 134 'jni_generator_ptr_type': 'long', | |
| 135 }, | 134 }, |
| 136 'includes': [ '../build/jni_generator.gypi' ], | 135 'includes': [ '../build/jni_generator.gypi' ], |
| 137 }, | 136 }, |
| 138 { | 137 { |
| 139 'target_name': 'android_webview_unittests_apk', | 138 'target_name': 'android_webview_unittests_apk', |
| 140 'type': 'none', | 139 'type': 'none', |
| 141 'dependencies': [ | 140 'dependencies': [ |
| 142 'android_webview_unittest_java', | 141 'android_webview_unittest_java', |
| 143 'android_webview_unittests', | 142 'android_webview_unittests', |
| 144 ], | 143 ], |
| 145 'variables': { | 144 'variables': { |
| 146 'test_suite_name': 'android_webview_unittests', | 145 'test_suite_name': 'android_webview_unittests', |
| 147 }, | 146 }, |
| 148 'includes': [ '../build/apk_test.gypi' ], | 147 'includes': [ '../build/apk_test.gypi' ], |
| 149 }, | 148 }, |
| 150 ], | 149 ], |
| 151 } | 150 } |
| OLD | NEW |