OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 13 matching lines...) Expand all Loading... |
24 '../url/url.gyp:url_lib', | 24 '../url/url.gyp:url_lib', |
25 'browser/speech/proto/speech_proto.gyp:speech_proto', | 25 'browser/speech/proto/speech_proto.gyp:speech_proto', |
26 'content.gyp:content_app_both', | 26 'content.gyp:content_app_both', |
27 'content.gyp:content_browser', | 27 'content.gyp:content_browser', |
28 'content.gyp:content_common', | 28 'content.gyp:content_common', |
29 ], | 29 ], |
30 'include_dirs': [ | 30 'include_dirs': [ |
31 '..', | 31 '..', |
32 ], | 32 ], |
33 'sources': [ | 33 'sources': [ |
| 34 'public/test/async_file_test_helper.cc', |
| 35 'public/test/async_file_test_helper.h', |
34 'public/test/browser_test_base.cc', | 36 'public/test/browser_test_base.cc', |
35 'public/test/browser_test_base.h', | 37 'public/test/browser_test_base.h', |
36 'public/test/browser_test.h', | 38 'public/test/browser_test.h', |
37 'public/test/browser_test_utils.cc', | 39 'public/test/browser_test_utils.cc', |
38 'public/test/browser_test_utils.h', | 40 'public/test/browser_test_utils.h', |
39 'public/test/content_test_suite_base.cc', | 41 'public/test/content_test_suite_base.cc', |
40 'public/test/content_test_suite_base.h', | 42 'public/test/content_test_suite_base.h', |
41 'public/test/download_test_observer.cc', | 43 'public/test/download_test_observer.cc', |
42 'public/test/download_test_observer.h', | 44 'public/test/download_test_observer.h', |
43 'public/test/fake_speech_recognition_manager.cc', | 45 'public/test/fake_speech_recognition_manager.cc', |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 'test/webkit_support.h', | 177 'test/webkit_support.h', |
176 'test/webkit_support_glue.cc', | 178 'test/webkit_support_glue.cc', |
177 'test/weburl_loader_mock.cc', | 179 'test/weburl_loader_mock.cc', |
178 'test/weburl_loader_mock.h', | 180 'test/weburl_loader_mock.h', |
179 'test/weburl_loader_mock_factory.cc', | 181 'test/weburl_loader_mock_factory.cc', |
180 'test/weburl_loader_mock_factory.h', | 182 'test/weburl_loader_mock_factory.h', |
181 | 183 |
182 # TODO(kinuko): Those files should be moved to content/public/test. | 184 # TODO(kinuko): Those files should be moved to content/public/test. |
183 '../webkit/browser/appcache/appcache_test_helper.cc', | 185 '../webkit/browser/appcache/appcache_test_helper.cc', |
184 '../webkit/browser/appcache/appcache_test_helper.h', | 186 '../webkit/browser/appcache/appcache_test_helper.h', |
185 '../webkit/browser/fileapi/async_file_test_helper.cc', | |
186 '../webkit/browser/fileapi/async_file_test_helper.h', | |
187 ], | 187 ], |
188 'conditions': [ | 188 'conditions': [ |
189 ['OS == "ios"', { | 189 ['OS == "ios"', { |
190 'sources/': [ | 190 'sources/': [ |
191 # iOS only needs a small portion of content; exclude all the | 191 # iOS only needs a small portion of content; exclude all the |
192 # implementation, and re-include what is used. | 192 # implementation, and re-include what is used. |
193 ['exclude', '\\.(cc|mm)$'], | 193 ['exclude', '\\.(cc|mm)$'], |
194 ['include', '_ios\\.(cc|mm)$'], | 194 ['include', '_ios\\.(cc|mm)$'], |
195 ['include', '^public/test/content_test_suite_base\\.cc$'], | 195 ['include', '^public/test/content_test_suite_base\\.cc$'], |
196 ['include', '^public/test/mock_notification_observer\\.cc$'], | 196 ['include', '^public/test/mock_notification_observer\\.cc$'], |
(...skipping 1481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1678 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1678 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
1679 }, | 1679 }, |
1680 ], | 1680 ], |
1681 }], | 1681 }], |
1682 ], | 1682 ], |
1683 }, | 1683 }, |
1684 ], | 1684 ], |
1685 }], | 1685 }], |
1686 ], | 1686 ], |
1687 } | 1687 } |
OLD | NEW |