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

Side by Side Diff: components/components_tests.gyp

Issue 1203083002: Add a JSON sanitizer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 'rappor_unittest_sources': [ 481 'rappor_unittest_sources': [
482 'rappor/bloom_filter_unittest.cc', 482 'rappor/bloom_filter_unittest.cc',
483 'rappor/byte_vector_utils_unittest.cc', 483 'rappor/byte_vector_utils_unittest.cc',
484 'rappor/log_uploader_unittest.cc', 484 'rappor/log_uploader_unittest.cc',
485 'rappor/rappor_metric_unittest.cc', 485 'rappor/rappor_metric_unittest.cc',
486 'rappor/rappor_prefs_unittest.cc', 486 'rappor/rappor_prefs_unittest.cc',
487 'rappor/rappor_service_unittest.cc', 487 'rappor/rappor_service_unittest.cc',
488 'rappor/rappor_utils_unittest.cc', 488 'rappor/rappor_utils_unittest.cc',
489 'rappor/sampler_unittest.cc', 489 'rappor/sampler_unittest.cc',
490 ], 490 ],
491 'safe_json_unittest_sources': [
492 'safe_json/json_sanitizer_unittest.cc',
493 ],
491 'scheduler_unittest_sources': [ 494 'scheduler_unittest_sources': [
492 'scheduler/child/idle_helper_unittest.cc', 495 'scheduler/child/idle_helper_unittest.cc',
493 'scheduler/child/nestable_task_runner_for_test.cc', 496 'scheduler/child/nestable_task_runner_for_test.cc',
494 'scheduler/child/nestable_task_runner_for_test.h', 497 'scheduler/child/nestable_task_runner_for_test.h',
495 'scheduler/child/prioritizing_task_queue_selector_unittest.cc', 498 'scheduler/child/prioritizing_task_queue_selector_unittest.cc',
496 'scheduler/child/scheduler_helper_unittest.cc', 499 'scheduler/child/scheduler_helper_unittest.cc',
497 'scheduler/child/task_queue_manager_unittest.cc', 500 'scheduler/child/task_queue_manager_unittest.cc',
498 'scheduler/child/test_time_source.cc', 501 'scheduler/child/test_time_source.cc',
499 'scheduler/child/test_time_source.h', 502 'scheduler/child/test_time_source.h',
500 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc', 503 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], 895 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
893 }], 896 }],
894 ['OS != "ios"', { 897 ['OS != "ios"', {
895 'sources': [ 898 'sources': [
896 '<@(devtools_http_handler_unittest_sources)', 899 '<@(devtools_http_handler_unittest_sources)',
897 '<@(error_page_unittest_sources)', 900 '<@(error_page_unittest_sources)',
898 '<@(guest_view_unittest_sources)', 901 '<@(guest_view_unittest_sources)',
899 '<@(navigation_interception_unittest_sources)', 902 '<@(navigation_interception_unittest_sources)',
900 '<@(network_hints_unittest_sources)', 903 '<@(network_hints_unittest_sources)',
901 '<@(power_unittest_sources)', 904 '<@(power_unittest_sources)',
905 '<@(safe_json_unittest_sources)',
902 '<@(scheduler_unittest_sources)', 906 '<@(scheduler_unittest_sources)',
903 '<@(storage_monitor_unittest_sources)', 907 '<@(storage_monitor_unittest_sources)',
904 '<@(ui_unittest_sources)', 908 '<@(ui_unittest_sources)',
905 '<@(visitedlink_unittest_sources)', 909 '<@(visitedlink_unittest_sources)',
906 '<@(web_cache_unittest_sources)', 910 '<@(web_cache_unittest_sources)',
907 '<@(webcrypto_unittest_sources)', 911 '<@(webcrypto_unittest_sources)',
908 '<@(web_modal_unittest_sources)', 912 '<@(web_modal_unittest_sources)',
909 ], 913 ],
910 'dependencies': [ 914 'dependencies': [
911 '../skia/skia.gyp:skia', 915 '../skia/skia.gyp:skia',
912 'components.gyp:autofill_content_browser', 916 'components.gyp:autofill_content_browser',
913 'components.gyp:autofill_content_renderer', 917 'components.gyp:autofill_content_renderer',
914 'components.gyp:autofill_content_test_support', 918 'components.gyp:autofill_content_test_support',
915 'components.gyp:data_reduction_proxy_content_browser', 919 'components.gyp:data_reduction_proxy_content_browser',
916 'components.gyp:devtools_http_handler', 920 'components.gyp:devtools_http_handler',
917 'components.gyp:dom_distiller_content', 921 'components.gyp:dom_distiller_content',
918 'components.gyp:error_page_renderer', 922 'components.gyp:error_page_renderer',
919 'components.gyp:favicon_content', 923 'components.gyp:favicon_content',
920 'components.gyp:guest_view_browser', 924 'components.gyp:guest_view_browser',
921 'components.gyp:guest_view_common', 925 'components.gyp:guest_view_common',
922 'components.gyp:guest_view_test_support', 926 'components.gyp:guest_view_test_support',
923 'components.gyp:history_content_browser', 927 'components.gyp:history_content_browser',
924 'components.gyp:keyed_service_content', 928 'components.gyp:keyed_service_content',
925 'components.gyp:navigation_interception', 929 'components.gyp:navigation_interception',
926 'components.gyp:network_hints_renderer', 930 'components.gyp:network_hints_renderer',
927 'components.gyp:password_manager_content_browser', 931 'components.gyp:password_manager_content_browser',
928 'components.gyp:password_manager_content_common', 932 'components.gyp:password_manager_content_common',
929 'components.gyp:power', 933 'components.gyp:power',
930 'components.gyp:precache_content', 934 'components.gyp:precache_content',
935 'components.gyp:safe_json',
936 'components.gyp:safe_json_test_support',
931 'components.gyp:sessions_content', 937 'components.gyp:sessions_content',
932 'components.gyp:storage_monitor', 938 'components.gyp:storage_monitor',
933 'components.gyp:storage_monitor_test_support', 939 'components.gyp:storage_monitor_test_support',
934 'components.gyp:url_matcher', 940 'components.gyp:url_matcher',
935 'components.gyp:visitedlink_browser', 941 'components.gyp:visitedlink_browser',
936 'components.gyp:visitedlink_renderer', 942 'components.gyp:visitedlink_renderer',
937 'components.gyp:web_cache_browser', 943 'components.gyp:web_cache_browser',
938 'components.gyp:web_modal', 944 'components.gyp:web_modal',
939 'components.gyp:web_modal_test_support', 945 'components.gyp:web_modal_test_support',
940 'scheduler/scheduler.gyp:scheduler', 946 'scheduler/scheduler.gyp:scheduler',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 'gcm_driver/instance_id/instance_id_driver_unittest.cc', 1059 'gcm_driver/instance_id/instance_id_driver_unittest.cc',
1054 'sessions/session_backend_unittest.cc', 1060 'sessions/session_backend_unittest.cc',
1055 'storage_monitor/media_storage_util_unittest.cc', 1061 'storage_monitor/media_storage_util_unittest.cc',
1056 'storage_monitor/storage_info_unittest.cc', 1062 'storage_monitor/storage_info_unittest.cc',
1057 'storage_monitor/storage_monitor_unittest.cc', 1063 'storage_monitor/storage_monitor_unittest.cc',
1058 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 1064 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
1059 ], 1065 ],
1060 'dependencies': [ 1066 'dependencies': [
1061 'components.gyp:cronet_static', 1067 'components.gyp:cronet_static',
1062 'components.gyp:data_reduction_proxy_content', 1068 'components.gyp:data_reduction_proxy_content',
1069 'components.gyp:safe_json_java',
1063 '../content/content.gyp:content_java', 1070 '../content/content.gyp:content_java',
1064 '../testing/android/native_test.gyp:native_test_native_code', 1071 '../testing/android/native_test.gyp:native_test_native_code',
1065 ], 1072 ],
1066 'dependencies!': [ 1073 'dependencies!': [
1067 'components.gyp:storage_monitor', 1074 'components.gyp:storage_monitor',
1068 'components.gyp:storage_monitor_test_support', 1075 'components.gyp:storage_monitor_test_support',
1069 'components.gyp:web_modal', 1076 'components.gyp:web_modal',
1070 'components.gyp:web_modal_test_support', 1077 'components.gyp:web_modal_test_support',
1071 ], 1078 ],
1072 }], 1079 }],
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 ], 1510 ],
1504 'variables': { 1511 'variables': {
1505 'test_suite_name': 'components_unittests', 1512 'test_suite_name': 'components_unittests',
1506 }, 1513 },
1507 'includes': [ '../build/apk_test.gypi' ], 1514 'includes': [ '../build/apk_test.gypi' ],
1508 }, 1515 },
1509 ], 1516 ],
1510 }], 1517 }],
1511 ], 1518 ],
1512 } 1519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698