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

Side by Side Diff: content/content_tests.gypi

Issue 1062163004: Plugins: Move Prerender tests to PPAPI and some refactoring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
OLDNEW
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 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'public/test/mock_render_process_host.cc', 56 'public/test/mock_render_process_host.cc',
57 'public/test/mock_render_process_host.h', 57 'public/test/mock_render_process_host.h',
58 'public/test/mock_render_thread.cc', 58 'public/test/mock_render_thread.cc',
59 'public/test/mock_render_thread.h', 59 'public/test/mock_render_thread.h',
60 'public/test/mock_resource_context.cc', 60 'public/test/mock_resource_context.cc',
61 'public/test/mock_resource_context.h', 61 'public/test/mock_resource_context.h',
62 'public/test/mock_special_storage_policy.cc', 62 'public/test/mock_special_storage_policy.cc',
63 'public/test/mock_special_storage_policy.h', 63 'public/test/mock_special_storage_policy.h',
64 'public/test/mock_storage_client.cc', 64 'public/test/mock_storage_client.cc',
65 'public/test/mock_storage_client.h', 65 'public/test/mock_storage_client.h',
66 'public/test/ppapi_test_utils.cc',
67 'public/test/ppapi_test_utils.h',
66 'public/test/render_view_test.cc', 68 'public/test/render_view_test.cc',
67 'public/test/render_view_test.h', 69 'public/test/render_view_test.h',
68 'public/test/render_widget_test.cc', 70 'public/test/render_widget_test.cc',
69 'public/test/render_widget_test.h', 71 'public/test/render_widget_test.h',
70 'public/test/sandbox_file_system_test_helper.cc', 72 'public/test/sandbox_file_system_test_helper.cc',
71 'public/test/sandbox_file_system_test_helper.h', 73 'public/test/sandbox_file_system_test_helper.h',
72 'public/test/test_browser_context.cc', 74 'public/test/test_browser_context.cc',
73 'public/test/test_browser_context.h', 75 'public/test/test_browser_context.h',
74 'public/test/test_browser_thread.cc', 76 'public/test/test_browser_thread.cc',
75 'public/test/test_browser_thread.h', 77 'public/test/test_browser_thread.h',
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 'export_dependent_settings': [ 823 'export_dependent_settings': [
822 'content.gyp:content_browser', 824 'content.gyp:content_browser',
823 ], 825 ],
824 'include_dirs': [ 826 'include_dirs': [
825 '..', 827 '..',
826 ], 828 ],
827 'sources': [ '<@(test_support_content_sources)' ], 829 'sources': [ '<@(test_support_content_sources)' ],
828 'conditions': [ 830 'conditions': [
829 ['enable_plugins==0', { 831 ['enable_plugins==0', {
830 'sources!': [ 832 'sources!': [
833 'public/test/ppapi_test_utils.cc',
831 'test/ppapi_unittest.cc', 834 'test/ppapi_unittest.cc',
832 ], 835 ],
833 }], 836 }],
834 ['enable_web_speech==0', { 837 ['enable_web_speech==0', {
835 'sources!': [ 838 'sources!': [
836 'test/mock_google_streaming_server.cc', 839 'test/mock_google_streaming_server.cc',
837 ], 840 ],
838 }], 841 }],
839 ['OS == "ios"', { 842 ['OS == "ios"', {
840 'sources/': [ 843 'sources/': [
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after
2190 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2193 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2191 }, 2194 },
2192 ], 2195 ],
2193 }], 2196 }],
2194 ], 2197 ],
2195 }, 2198 },
2196 ], 2199 ],
2197 }], 2200 }],
2198 ], 2201 ],
2199 } 2202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698