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

Side by Side Diff: content/content_tests.gypi

Issue 10807047: Create content\public\test\test_utils.h to hold common test classes that are used by unit and brows… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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 { 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 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 28 matching lines...) Expand all
39 'public/test/render_view_fake_resources_test.h', 39 'public/test/render_view_fake_resources_test.h',
40 'public/test/render_view_test.h', 40 'public/test/render_view_test.h',
41 'public/test/test_browser_context.h', 41 'public/test/test_browser_context.h',
42 'public/test/test_browser_thread.h', 42 'public/test/test_browser_thread.h',
43 'public/test/test_content_client_initializer.h', 43 'public/test/test_content_client_initializer.h',
44 'public/test/test_file_error_injector.h', 44 'public/test/test_file_error_injector.h',
45 'public/test/test_launcher.h', 45 'public/test/test_launcher.h',
46 'public/test/test_navigation_observer.h', 46 'public/test/test_navigation_observer.h',
47 'public/test/test_notification_tracker.h', 47 'public/test/test_notification_tracker.h',
48 'public/test/test_renderer_host.h', 48 'public/test/test_renderer_host.h',
49 'public/test/test_utils.h',
49 'public/test/unittest_test_suite.h', 50 'public/test/unittest_test_suite.h',
50 'public/test/web_contents_tester.h', 51 'public/test/web_contents_tester.h',
51 'app/startup_helper_win.cc', 52 'app/startup_helper_win.cc',
52 # TODO(phajdan.jr): All of those files should live in content/test (if 53 # TODO(phajdan.jr): All of those files should live in content/test (if
53 # they're only used by content) or content/public/test (if they're used 54 # they're only used by content) or content/public/test (if they're used
54 # by other embedders). 55 # by other embedders).
55 'browser/download/mock_download_file.cc', 56 'browser/download/mock_download_file.cc',
56 'browser/download/mock_download_file.h', 57 'browser/download/mock_download_file.h',
57 'browser/geolocation/arbitrator_dependency_factories_for_test.cc', 58 'browser/geolocation/arbitrator_dependency_factories_for_test.cc',
58 'browser/geolocation/arbitrator_dependency_factories_for_test.h', 59 'browser/geolocation/arbitrator_dependency_factories_for_test.h',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'test/test_content_client.cc', 115 'test/test_content_client.cc',
115 'test/test_content_client.h', 116 'test/test_content_client.h',
116 'test/test_content_client_initializer.cc', 117 'test/test_content_client_initializer.cc',
117 'test/test_file_error_injector.cc', 118 'test/test_file_error_injector.cc',
118 'test/test_navigation_observer.cc', 119 'test/test_navigation_observer.cc',
119 'test/test_notification_tracker.cc', 120 'test/test_notification_tracker.cc',
120 'test/test_renderer_host.cc', 121 'test/test_renderer_host.cc',
121 'test/test_render_view_host_factory.cc', 122 'test/test_render_view_host_factory.cc',
122 'test/test_render_view_host_factory.h', 123 'test/test_render_view_host_factory.h',
123 'test/test_launcher.cc', 124 'test/test_launcher.cc',
125 'test/test_utils.cc',
124 'test/test_web_contents_view.cc', 126 'test/test_web_contents_view.cc',
125 'test/test_web_contents_view.h', 127 'test/test_web_contents_view.h',
126 'test/unittest_test_suite.cc', 128 'test/unittest_test_suite.cc',
127 'test/web_contents_tester.cc', 129 'test/web_contents_tester.cc',
128 130
129 # TODO(phajdan.jr): Those files should be moved to webkit 131 # TODO(phajdan.jr): Those files should be moved to webkit
130 # test support target. 132 # test support target.
131 '../webkit/appcache/appcache_test_helper.cc', 133 '../webkit/appcache/appcache_test_helper.cc',
132 '../webkit/appcache/appcache_test_helper.h', 134 '../webkit/appcache/appcache_test_helper.h',
133 '../webkit/quota/mock_special_storage_policy.cc', 135 '../webkit/quota/mock_special_storage_policy.cc',
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', 697 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
696 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', 698 '<(PRODUCT_DIR)/lib.java/chromium_content.jar',
697 ], 699 ],
698 }, 700 },
699 'includes': [ '../build/apk_test.gypi' ], 701 'includes': [ '../build/apk_test.gypi' ],
700 }, 702 },
701 ], 703 ],
702 }], 704 }],
703 ], 705 ],
704 } 706 }
OLDNEW
« no previous file with comments | « content/browser/speech/speech_recognition_browsertest.cc ('k') | content/public/test/browser_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698