| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', | 100 '<(SHARED_INTERMEDIATE_DIR)/android_webview_unittests', |
| 101 ], | 101 ], |
| 102 'sources': [ | 102 'sources': [ |
| 103 'browser/aw_static_cookie_policy_unittest.cc', | 103 'browser/aw_static_cookie_policy_unittest.cc', |
| 104 'browser/aw_form_database_service_unittest.cc', | 104 'browser/aw_form_database_service_unittest.cc', |
| 105 'browser/global_tile_manager_unittest.cc', | 105 'browser/global_tile_manager_unittest.cc', |
| 106 'browser/net/android_stream_reader_url_request_job_unittest.cc', | 106 'browser/net/android_stream_reader_url_request_job_unittest.cc', |
| 107 'browser/net/input_stream_reader_unittest.cc', | 107 'browser/net/input_stream_reader_unittest.cc', |
| 108 'lib/main/webview_tests.cc', | 108 'lib/main/webview_tests.cc', |
| 109 'native/aw_contents_client_bridge_unittest.cc', | 109 'native/aw_contents_client_bridge_unittest.cc', |
| 110 'native/aw_media_url_interceptor_unittest.cc', |
| 110 'native/input_stream_unittest.cc', | 111 'native/input_stream_unittest.cc', |
| 111 'native/permission/media_access_permission_request_unittest.cc', | 112 'native/permission/media_access_permission_request_unittest.cc', |
| 112 'native/permission/permission_request_handler_unittest.cc', | 113 'native/permission/permission_request_handler_unittest.cc', |
| 113 'native/state_serializer_unittest.cc', | 114 'native/state_serializer_unittest.cc', |
| 114 ], | 115 ], |
| 115 }, | 116 }, |
| 116 { | 117 { |
| 117 'target_name': 'android_webview_unittest_java', | 118 'target_name': 'android_webview_unittest_java', |
| 118 'type': 'none', | 119 'type': 'none', |
| 119 'dependencies': [ | 120 'dependencies': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 140 }, | 141 }, |
| 141 { | 142 { |
| 142 'target_name': 'android_webview_unittests_apk', | 143 'target_name': 'android_webview_unittests_apk', |
| 143 'type': 'none', | 144 'type': 'none', |
| 144 'dependencies': [ | 145 'dependencies': [ |
| 145 'android_webview_unittest_java', | 146 'android_webview_unittest_java', |
| 146 'android_webview_unittests', | 147 'android_webview_unittests', |
| 147 ], | 148 ], |
| 148 'variables': { | 149 'variables': { |
| 149 'test_suite_name': 'android_webview_unittests', | 150 'test_suite_name': 'android_webview_unittests', |
| 151 'additional_input_paths': [ |
| 152 '<(PRODUCT_DIR)/android_webview_unittests_apk/assets/asset_file.ogg', |
| 153 ], |
| 150 }, | 154 }, |
| 155 'copies': [ |
| 156 { |
| 157 'destination': '<(PRODUCT_DIR)/android_webview_unittests_apk/assets', |
| 158 'files': [ |
| 159 'test/unittest/assets/asset_file.ogg', |
| 160 ], |
| 161 }, |
| 162 ], |
| 151 'includes': [ '../build/apk_test.gypi' ], | 163 'includes': [ '../build/apk_test.gypi' ], |
| 152 }, | 164 }, |
| 153 ], | 165 ], |
| 154 } | 166 } |
| OLD | NEW |