| 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', |
| 134 }, | 135 }, |
| 135 'includes': [ '../build/jni_generator.gypi' ], | 136 'includes': [ '../build/jni_generator.gypi' ], |
| 136 }, | 137 }, |
| 137 { | 138 { |
| 138 'target_name': 'android_webview_unittests_apk', | 139 'target_name': 'android_webview_unittests_apk', |
| 139 'type': 'none', | 140 'type': 'none', |
| 140 'dependencies': [ | 141 'dependencies': [ |
| 141 'android_webview_unittest_java', | 142 'android_webview_unittest_java', |
| 142 'android_webview_unittests', | 143 'android_webview_unittests', |
| 143 ], | 144 ], |
| 144 'variables': { | 145 'variables': { |
| 145 'test_suite_name': 'android_webview_unittests', | 146 'test_suite_name': 'android_webview_unittests', |
| 146 }, | 147 }, |
| 147 'includes': [ '../build/apk_test.gypi' ], | 148 'includes': [ '../build/apk_test.gypi' ], |
| 148 }, | 149 }, |
| 149 ], | 150 ], |
| 150 } | 151 } |
| OLD | NEW |