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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 'dependencies': [ | 82 'dependencies': [ |
83 '../base/base.gyp:test_support_base', | 83 '../base/base.gyp:test_support_base', |
84 '../content/content_shell_and_tests.gyp:test_support_content', | 84 '../content/content_shell_and_tests.gyp:test_support_content', |
85 '../net/net.gyp:net_test_support', | 85 '../net/net.gyp:net_test_support', |
86 '../testing/android/native_test.gyp:native_test_native_code', | 86 '../testing/android/native_test.gyp:native_test_native_code', |
87 '../testing/gmock.gyp:gmock', | 87 '../testing/gmock.gyp:gmock', |
88 '../testing/gtest.gyp:gtest', | 88 '../testing/gtest.gyp:gtest', |
89 '../ui/base/ui_base.gyp:ui_base_jni_headers', | 89 '../ui/base/ui_base.gyp:ui_base_jni_headers', |
90 'android_webview_common', | 90 'android_webview_common', |
91 'android_webview_unittests_jni', | 91 'android_webview_unittests_jni', |
92 'libwebviewchromium', | |
mkosiba (inactive)
2014/04/23 18:04:40
I'm surprised it doesn't crash. - you've just intr
michaelbai
2014/04/24 00:56:43
oops, it should be removed, I were hoping it could
mkosiba (inactive)
2014/04/24 09:24:58
yes, testing/android/native_test_launcher.cc defin
| |
92 ], | 93 ], |
93 'include_dirs': [ | 94 'include_dirs': [ |
94 '..', | 95 '..', |
95 '../skia/config', | 96 '../skia/config', |
96 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', | 97 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', |
97 ], | 98 ], |
98 'sources': [ | 99 'sources': [ |
99 'browser/aw_form_database_service_unittest.cc', | 100 'browser/aw_form_database_service_unittest.cc', |
100 'browser/net/android_stream_reader_url_request_job_unittest.cc', | 101 'browser/net/android_stream_reader_url_request_job_unittest.cc', |
101 'browser/net/input_stream_reader_unittest.cc', | 102 'browser/net/input_stream_reader_unittest.cc', |
102 'lib/main/webview_tests.cc', | 103 'lib/main/webview_tests.cc', |
103 'native/input_stream_unittest.cc', | 104 'native/input_stream_unittest.cc', |
105 'native/permission/media_access_permission_request_unittest.cc', | |
106 'native/permission/permission_request_handler_unittest.cc', | |
104 'native/state_serializer_unittest.cc', | 107 'native/state_serializer_unittest.cc', |
105 ], | 108 ], |
106 }, | 109 }, |
107 { | 110 { |
108 'target_name': 'android_webview_unittest_java', | 111 'target_name': 'android_webview_unittest_java', |
109 'type': 'none', | 112 'type': 'none', |
110 'dependencies': [ | 113 'dependencies': [ |
111 '../base/base.gyp:base_java_test_support', | 114 '../base/base.gyp:base_java_test_support', |
112 '../content/content_shell_and_tests.gyp:content_java_test_support', | 115 '../content/content_shell_and_tests.gyp:content_java_test_support', |
113 'android_webview_java', | 116 'android_webview_java', |
(...skipping 22 matching lines...) Expand all Loading... | |
136 'android_webview_unittest_java', | 139 'android_webview_unittest_java', |
137 'android_webview_unittests', | 140 'android_webview_unittests', |
138 ], | 141 ], |
139 'variables': { | 142 'variables': { |
140 'test_suite_name': 'android_webview_unittests', | 143 'test_suite_name': 'android_webview_unittests', |
141 }, | 144 }, |
142 'includes': [ '../build/apk_test.gypi' ], | 145 'includes': [ '../build/apk_test.gypi' ], |
143 }, | 146 }, |
144 ], | 147 ], |
145 } | 148 } |
OLD | NEW |