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

Side by Side Diff: content/content_tests.gypi

Issue 1993543002: cc: Move cc param traits tests to cc/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added IPC dependency Created 4 years, 7 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
« no previous file with comments | « content/common/cc_messages_unittest.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 'child/shared_memory_data_consumer_handle_unittest.cc', 661 'child/shared_memory_data_consumer_handle_unittest.cc',
662 'child/shared_memory_received_data_factory_unittest.cc', 662 'child/shared_memory_received_data_factory_unittest.cc',
663 'child/simple_webmimeregistry_impl_unittest.cc', 663 'child/simple_webmimeregistry_impl_unittest.cc',
664 'child/site_isolation_stats_gatherer_unittest.cc', 664 'child/site_isolation_stats_gatherer_unittest.cc',
665 'child/v8_value_converter_impl_unittest.cc', 665 'child/v8_value_converter_impl_unittest.cc',
666 'child/web_data_consumer_handle_impl_unittest.cc', 666 'child/web_data_consumer_handle_impl_unittest.cc',
667 'child/web_url_loader_impl_unittest.cc', 667 'child/web_url_loader_impl_unittest.cc',
668 'child/worker_thread_registry_unittest.cc', 668 'child/worker_thread_registry_unittest.cc',
669 'common/android/address_parser_unittest.cc', 669 'common/android/address_parser_unittest.cc',
670 'common/android/gin_java_bridge_value_unittest.cc', 670 'common/android/gin_java_bridge_value_unittest.cc',
671 'common/cc_messages_unittest.cc',
672 'common/common_param_traits_unittest.cc', 671 'common/common_param_traits_unittest.cc',
673 'common/cross_site_document_classifier_unittest.cc', 672 'common/cross_site_document_classifier_unittest.cc',
674 'common/cursors/webcursor_unittest.cc', 673 'common/cursors/webcursor_unittest.cc',
675 'common/database_connections_unittest.cc', 674 'common/database_connections_unittest.cc',
676 'common/database_identifier_unittest.cc', 675 'common/database_identifier_unittest.cc',
677 'common/discardable_shared_memory_heap_unittest.cc', 676 'common/discardable_shared_memory_heap_unittest.cc',
678 'common/dom_storage/dom_storage_map_unittest.cc', 677 'common/dom_storage/dom_storage_map_unittest.cc',
679 'common/fileapi/file_system_util_unittest.cc', 678 'common/fileapi/file_system_util_unittest.cc',
680 'common/host_discardable_shared_memory_manager_unittest.cc', 679 'common/host_discardable_shared_memory_manager_unittest.cc',
681 'common/host_shared_bitmap_manager_unittest.cc', 680 'common/host_shared_bitmap_manager_unittest.cc',
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 '../testing/gtest.gyp:gtest', 1248 '../testing/gtest.gyp:gtest',
1250 '../testing/perf/perf_test.gyp:*', 1249 '../testing/perf/perf_test.gyp:*',
1251 '../ui/gfx/gfx.gyp:gfx', 1250 '../ui/gfx/gfx.gyp:gfx',
1252 '../ui/gfx/gfx.gyp:gfx_geometry', 1251 '../ui/gfx/gfx.gyp:gfx_geometry',
1253 ], 1252 ],
1254 'include_dirs': [ 1253 'include_dirs': [
1255 '..', 1254 '..',
1256 ], 1255 ],
1257 'sources': [ 1256 'sources': [
1258 'browser/renderer_host/input/input_router_impl_perftest.cc', 1257 'browser/renderer_host/input/input_router_impl_perftest.cc',
1259 'common/cc_messages_perftest.cc',
1260 'common/discardable_shared_memory_heap_perftest.cc', 1258 'common/discardable_shared_memory_heap_perftest.cc',
1261 'test/run_all_perftests.cc', 1259 'test/run_all_perftests.cc',
1262 ], 1260 ],
1263 'conditions': [ 1261 'conditions': [
1264 ['OS == "android"', { 1262 ['OS == "android"', {
1265 'dependencies': [ 1263 'dependencies': [
1266 '../testing/android/native_test.gyp:native_test_native_code', 1264 '../testing/android/native_test.gyp:native_test_native_code',
1267 ], 1265 ],
1268 }], 1266 }],
1269 ], 1267 ],
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 'content_unittests_apk.isolate', 1916 'content_unittests_apk.isolate',
1919 ], 1917 ],
1920 }, 1918 },
1921 ], 1919 ],
1922 }, 1920 },
1923 ], 1921 ],
1924 ], 1922 ],
1925 }], 1923 }],
1926 ], 1924 ],
1927 } 1925 }
OLDNEW
« no previous file with comments | « content/common/cc_messages_unittest.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698