Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: android_webview/android_webview_tests.gypi

Issue 12313042: [android_webview] Add a generic callback JNI bridge. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 ], 44 ],
45 'include_dirs': [ 45 'include_dirs': [
46 '..', 46 '..',
47 '../skia/config', 47 '../skia/config',
48 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', 48 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests',
49 ], 49 ],
50 'sources': [ 50 'sources': [
51 'browser/net/android_stream_reader_url_request_job_unittest.cc', 51 'browser/net/android_stream_reader_url_request_job_unittest.cc',
52 'browser/net/input_stream_reader_unittest.cc', 52 'browser/net/input_stream_reader_unittest.cc',
53 'lib/main/webview_tests.cc', 53 'lib/main/webview_tests.cc',
54 'native/callback_jni_bridge_unittest.cc',
54 'native/input_stream_unittest.cc', 55 'native/input_stream_unittest.cc',
55 'native/state_serializer_unittests.cc', 56 'native/state_serializer_unittests.cc',
56 ], 57 ],
57 }, 58 },
58 { 59 {
59 'target_name': 'android_webview_unittest_java', 60 'target_name': 'android_webview_unittest_java',
60 'type': 'none', 61 'type': 'none',
61 'dependencies': [ 62 'dependencies': [
62 '../base/base.gyp:base_java_test_support', 63 '../base/base.gyp:base_java_test_support',
63 '../content/content.gyp:content_java_test_support', 64 '../content/content.gyp:content_java_test_support',
64 'android_webview_java', 65 'android_webview_java',
65 ], 66 ],
66 'variables': { 67 'variables': {
67 'package_name': 'android_webview_unittest_java', 68 'package_name': 'android_webview_unittest_java',
68 'java_in_dir': '../android_webview/unittestjava', 69 'java_in_dir': '../android_webview/unittestjava',
69 }, 70 },
70 'includes': [ '../build/java.gypi' ], 71 'includes': [ '../build/java.gypi' ],
71 }, 72 },
72 { 73 {
73 'target_name': 'android_webview_unittests_jni', 74 'target_name': 'android_webview_unittests_jni',
74 'type': 'none', 75 'type': 'none',
75 'sources': [ 76 'sources': [
77 '../android_webview/unittestjava/src/org/chromium/android_webview/unit test/CallbackJNIBridgeUnittest.java',
76 '../android_webview/unittestjava/src/org/chromium/android_webview/unit test/InputStreamUnittest.java', 78 '../android_webview/unittestjava/src/org/chromium/android_webview/unit test/InputStreamUnittest.java',
77 ], 79 ],
78 'variables': { 80 'variables': {
79 'jni_gen_dir': 'android_webview_unittests', 81 'jni_gen_dir': 'android_webview_unittests',
80 }, 82 },
81 'includes': [ '../build/jni_generator.gypi' ], 83 'includes': [ '../build/jni_generator.gypi' ],
82 }, 84 },
83 { 85 {
84 'target_name': 'android_webview_unittests_apk', 86 'target_name': 'android_webview_unittests_apk',
85 'type': 'none', 87 'type': 'none',
86 'dependencies': [ 88 'dependencies': [
87 'android_webview_unittest_java', 89 'android_webview_unittest_java',
88 'android_webview_unittests', 90 'android_webview_unittests',
89 'android_webview_unittests_jni', 91 'android_webview_unittests_jni',
90 ], 92 ],
91 'variables': { 93 'variables': {
92 'test_suite_name': 'android_webview_unittests', 94 'test_suite_name': 'android_webview_unittests',
93 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi ew_unittests<(SHARED_LIB_SUFFIX)', 95 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi ew_unittests<(SHARED_LIB_SUFFIX)',
94 }, 96 },
95 'includes': [ '../build/apk_test.gypi' ], 97 'includes': [ '../build/apk_test.gypi' ],
96 }, 98 },
97 ], 99 ],
98 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698