Revert 168224 - Update V8 to version 3.15.4.
[chromium-blink-merge.git] / android_webview / android_webview_tests.gypi
blobd61d668be08901f1e0531a1f18b7137e7412f1d2
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
3 # found in the LICENSE file.
5   'targets': [
6     {
7       'target_name': 'android_webview_test_apk',
8       'type': 'none',
9       'dependencies': [
10         '../base/base.gyp:base_java_test_support',
11         '../content/content.gyp:content_java_test_support',
12         '../net/net.gyp:net_java_test_support',
13        'android_webview_java',
14         'libwebviewchromium',
15       ],
16       'variables': {
17         'package_name': 'android_webview_test',
18         'apk_name': 'AndroidWebViewTest',
19         'java_in_dir': '../android_webview/javatests',
20         'resource_dir': 'res',
21       },
22       'copies': [
23         {
24           'destination': '<(PRODUCT_DIR)/android_webview_test/assets',
25           'files': [ '<!@(find <(java_in_dir)/assets -type f)' ]
26         },
27       ],
28       'includes': [ '../build/java_apk.gypi' ],
29     },
30     {
31       'target_name': 'android_webview_unittests',
32       'type': '<(gtest_target_type)',
33       'dependencies': [
34         '../base/base.gyp:test_support_base',
35         '../testing/android/native_test.gyp:native_test_native_code',
36         '../testing/gmock.gyp:gmock',
37         '../testing/gtest.gyp:gtest',
38         'android_webview_common',
39       ],
40       'include_dirs': [
41         '..',
42         '../skia/config',
43       ],
44       'sources': [
45         'lib/main/webview_tests.cc',
46         'native/android_stream_reader_url_request_job_unittests.cc',
47       ],
48     },
49     {
50       'target_name': 'android_webview_unittests_apk',
51       'type': 'none',
52       'dependencies': [
53         'android_webview_unittests',
54       ],
55       'variables': {
56         'test_suite_name': 'android_webview_unittests',
57         'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webview_unittests<(SHARED_LIB_SUFFIX)',
58       },
59       'includes': [ '../build/apk_test.gypi' ],
60     },
61   ],