| 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_test_apk', | 7 'target_name': 'android_webview_test_apk', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base_java_test_support', | 10 '../base/base.gyp:base_java_test_support', |
| 11 '../content/content.gyp:content_java_test_support', | 11 '../content/content.gyp:content_java_test_support', |
| 12 '../net/net.gyp:net_java_test_support', | 12 '../net/net.gyp:net_java_test_support', |
| 13 'android_webview_java', | 13 'android_webview_java', |
| 14 'libwebviewchromium', | 14 'libwebviewchromium', |
| 15 ], | 15 ], |
| 16 'variables': { | 16 'variables': { |
| 17 'package_name': 'android_webview_test', | 17 'package_name': 'android_webview_test', |
| 18 'apk_name': 'AndroidWebViewTest', | 18 'apk_name': 'AndroidWebViewTest', |
| 19 'java_in_dir': '../android_webview/javatests', | 19 'java_in_dir': '../android_webview/javatests', |
| 20 'resource_dir': 'res', | 20 'resource_dir': 'res', |
| 21 'is_test_apk': 1, |
| 21 }, | 22 }, |
| 22 'copies': [ | 23 'copies': [ |
| 23 { | 24 { |
| 24 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', | 25 'destination': '<(PRODUCT_DIR)/android_webview_test/assets', |
| 25 'files': [ '<!@(find <(java_in_dir)/assets -type f)' ] | 26 'files': [ '<!@(find <(java_in_dir)/assets -type f)' ] |
| 26 }, | 27 }, |
| 27 ], | 28 ], |
| 28 'includes': [ '../build/java_apk.gypi' ], | 29 'includes': [ '../build/java_apk.gypi' ], |
| 29 }, | 30 }, |
| 30 { | 31 { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 53 'android_webview_unittests', | 54 'android_webview_unittests', |
| 54 ], | 55 ], |
| 55 'variables': { | 56 'variables': { |
| 56 'test_suite_name': 'android_webview_unittests', | 57 'test_suite_name': 'android_webview_unittests', |
| 57 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', | 58 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', |
| 58 }, | 59 }, |
| 59 'includes': [ '../build/apk_test.gypi' ], | 60 'includes': [ '../build/apk_test.gypi' ], |
| 60 }, | 61 }, |
| 61 ], | 62 ], |
| 62 } | 63 } |
| OLD | NEW |