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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'include_dirs': [ | 93 'include_dirs': [ |
94 '..', | 94 '..', |
95 '../skia/config', | 95 '../skia/config', |
96 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', | 96 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', |
97 ], | 97 ], |
98 'sources': [ | 98 'sources': [ |
99 'browser/aw_form_database_service_unittest.cc', | 99 'browser/aw_form_database_service_unittest.cc', |
100 'browser/net/android_stream_reader_url_request_job_unittest.cc', | 100 'browser/net/android_stream_reader_url_request_job_unittest.cc', |
101 'browser/net/input_stream_reader_unittest.cc', | 101 'browser/net/input_stream_reader_unittest.cc', |
102 'lib/main/webview_tests.cc', | 102 'lib/main/webview_tests.cc', |
| 103 'native/aw_contents_client_bridge_unittest.cc', |
103 'native/input_stream_unittest.cc', | 104 'native/input_stream_unittest.cc', |
104 'native/state_serializer_unittest.cc', | 105 'native/state_serializer_unittest.cc', |
105 ], | 106 ], |
106 }, | 107 }, |
107 { | 108 { |
108 'target_name': 'android_webview_unittest_java', | 109 'target_name': 'android_webview_unittest_java', |
109 'type': 'none', | 110 'type': 'none', |
110 'dependencies': [ | 111 'dependencies': [ |
111 '../base/base.gyp:base_java_test_support', | 112 '../base/base.gyp:base_java_test_support', |
112 '../content/content_shell_and_tests.gyp:content_java_test_support', | 113 '../content/content_shell_and_tests.gyp:content_java_test_support', |
113 'android_webview_java', | 114 'android_webview_java', |
114 ], | 115 ], |
115 'variables': { | 116 'variables': { |
116 'java_in_dir': '../android_webview/unittestjava', | 117 'java_in_dir': '../android_webview/unittestjava', |
117 }, | 118 }, |
118 'includes': [ '../build/java.gypi' ], | 119 'includes': [ '../build/java.gypi' ], |
119 }, | 120 }, |
120 { | 121 { |
121 'target_name': 'android_webview_unittests_jni', | 122 'target_name': 'android_webview_unittests_jni', |
122 'type': 'none', | 123 'type': 'none', |
123 'sources': [ | 124 'sources': [ |
124 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/InputStreamUnittest.java', | 125 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/InputStreamUnittest.java', |
| 126 '../android_webview/unittestjava/src/org/chromium/android_webview/unit
test/MockAwContentsClientBridge.java', |
125 ], | 127 ], |
126 'variables': { | 128 'variables': { |
127 'jni_gen_package': 'android_webview_unittests', | 129 'jni_gen_package': 'android_webview_unittests', |
128 'jni_generator_ptr_type': 'long', | 130 'jni_generator_ptr_type': 'long', |
129 }, | 131 }, |
130 'includes': [ '../build/jni_generator.gypi' ], | 132 'includes': [ '../build/jni_generator.gypi' ], |
131 }, | 133 }, |
132 { | 134 { |
133 'target_name': 'android_webview_unittests_apk', | 135 'target_name': 'android_webview_unittests_apk', |
134 'type': 'none', | 136 'type': 'none', |
135 'dependencies': [ | 137 'dependencies': [ |
136 'android_webview_unittest_java', | 138 'android_webview_unittest_java', |
137 'android_webview_unittests', | 139 'android_webview_unittests', |
138 ], | 140 ], |
139 'variables': { | 141 'variables': { |
140 'test_suite_name': 'android_webview_unittests', | 142 'test_suite_name': 'android_webview_unittests', |
141 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', | 143 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)android_webvi
ew_unittests<(SHARED_LIB_SUFFIX)', |
142 }, | 144 }, |
143 'includes': [ '../build/apk_test.gypi' ], | 145 'includes': [ '../build/apk_test.gypi' ], |
144 }, | 146 }, |
145 ], | 147 ], |
146 } | 148 } |
OLD | NEW |