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

Side by Side Diff: components/components_tests.gyp

Issue 1924323002: Move Cast certificate verification code from extensions to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplified OWNERS files 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 | « components/components.gyp ('k') | components/test/data/cast_certificate/OWNERS » ('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 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'browser_watcher/window_hang_monitor_win_unittest.cc', 93 'browser_watcher/window_hang_monitor_win_unittest.cc',
94 ], 94 ],
95 'bubble_unittest_sources': [ 95 'bubble_unittest_sources': [
96 'bubble/bubble_manager_mocks.cc', 96 'bubble/bubble_manager_mocks.cc',
97 'bubble/bubble_manager_mocks.h', 97 'bubble/bubble_manager_mocks.h',
98 'bubble/bubble_manager_unittest.cc', 98 'bubble/bubble_manager_unittest.cc',
99 ], 99 ],
100 'captive_portal_unittest_sources': [ 100 'captive_portal_unittest_sources': [
101 'captive_portal/captive_portal_detector_unittest.cc', 101 'captive_portal/captive_portal_detector_unittest.cc',
102 ], 102 ],
103 'cast_certificate_unittest_sources': [
104 'cast_certificate/cast_cert_validator_test_helpers.cc',
105 'cast_certificate/cast_cert_validator_test_helpers.h',
106 'cast_certificate/cast_cert_validator_unittest.cc',
107 ],
103 'certificate_reporting_unittest_sources': [ 108 'certificate_reporting_unittest_sources': [
104 'certificate_reporting/error_report_unittest.cc', 109 'certificate_reporting/error_report_unittest.cc',
105 'certificate_reporting/error_reporter_unittest.cc', 110 'certificate_reporting/error_reporter_unittest.cc',
106 ], 111 ],
107 'certificate_transparency_unittest_sources': [ 112 'certificate_transparency_unittest_sources': [
108 'certificate_transparency/log_proof_fetcher_unittest.cc', 113 'certificate_transparency/log_proof_fetcher_unittest.cc',
109 ], 114 ],
110 'child_trace_message_filter_unittest_sources': [ 115 'child_trace_message_filter_unittest_sources': [
111 'tracing/child_trace_message_filter_unittest.cc', 116 'tracing/child_trace_message_filter_unittest.cc',
112 ], 117 ],
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 'sources': [ 960 'sources': [
956 'test/run_all_unittests.cc', 961 'test/run_all_unittests.cc',
957 962
958 '<@(auto_login_parser_unittest_sources)', 963 '<@(auto_login_parser_unittest_sources)',
959 '<@(autofill_unittest_sources)', 964 '<@(autofill_unittest_sources)',
960 '<@(bookmarks_unittest_sources)', 965 '<@(bookmarks_unittest_sources)',
961 '<@(browser_sync_unittest_sources)', 966 '<@(browser_sync_unittest_sources)',
962 '<@(browser_watcher_unittest_sources)', 967 '<@(browser_watcher_unittest_sources)',
963 '<@(bubble_unittest_sources)', 968 '<@(bubble_unittest_sources)',
964 '<@(captive_portal_unittest_sources)', 969 '<@(captive_portal_unittest_sources)',
970 '<@(cast_certificate_unittest_sources)',
965 '<@(certificate_reporting_unittest_sources)', 971 '<@(certificate_reporting_unittest_sources)',
966 '<@(client_update_protocol_unittest_sources)', 972 '<@(client_update_protocol_unittest_sources)',
967 '<@(cloud_devices_unittest_sources)', 973 '<@(cloud_devices_unittest_sources)',
968 '<@(component_updater_unittest_sources)', 974 '<@(component_updater_unittest_sources)',
969 '<@(content_settings_unittest_sources)', 975 '<@(content_settings_unittest_sources)',
970 '<@(crash_unittest_sources)', 976 '<@(crash_unittest_sources)',
971 '<@(crx_file_unittest_sources)', 977 '<@(crx_file_unittest_sources)',
972 '<@(data_reduction_proxy_unittest_sources)', 978 '<@(data_reduction_proxy_unittest_sources)',
973 '<@(data_usage_unittest_sources)', 979 '<@(data_usage_unittest_sources)',
974 '<@(data_use_measurement_unittest_sources)', 980 '<@(data_use_measurement_unittest_sources)',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 'components.gyp:autofill_core_browser', 1067 'components.gyp:autofill_core_browser',
1062 'components.gyp:autofill_core_common', 1068 'components.gyp:autofill_core_common',
1063 'components.gyp:autofill_core_test_support', 1069 'components.gyp:autofill_core_test_support',
1064 'components.gyp:bookmarks_browser', 1070 'components.gyp:bookmarks_browser',
1065 'components.gyp:bookmarks_managed', 1071 'components.gyp:bookmarks_managed',
1066 'components.gyp:bookmarks_test_support', 1072 'components.gyp:bookmarks_test_support',
1067 'components.gyp:browser_sync_browser', 1073 'components.gyp:browser_sync_browser',
1068 'components.gyp:browser_sync_browser_test_support', 1074 'components.gyp:browser_sync_browser_test_support',
1069 'components.gyp:bubble', 1075 'components.gyp:bubble',
1070 'components.gyp:captive_portal_test_support', 1076 'components.gyp:captive_portal_test_support',
1077 'components.gyp:cast_certificate',
1071 'components.gyp:certificate_reporting', 1078 'components.gyp:certificate_reporting',
1072 'components.gyp:cloud_devices_common', 1079 'components.gyp:cloud_devices_common',
1073 'components.gyp:component_updater', 1080 'components.gyp:component_updater',
1074 'components.gyp:component_updater_test_support', 1081 'components.gyp:component_updater_test_support',
1075 'components.gyp:content_settings_core_browser', 1082 'components.gyp:content_settings_core_browser',
1076 'components.gyp:content_settings_core_common', 1083 'components.gyp:content_settings_core_common',
1077 'components.gyp:content_settings_core_test_support', 1084 'components.gyp:content_settings_core_test_support',
1078 'components.gyp:crash_core_common', 1085 'components.gyp:crash_core_common',
1079 'components.gyp:crx_file', 1086 'components.gyp:crx_file',
1080 'components.gyp:data_reduction_proxy_core_browser', 1087 'components.gyp:data_reduction_proxy_core_browser',
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
1915 'dependencies': [ 1922 'dependencies': [
1916 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1923 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1917 ], 1924 ],
1918 }], 1925 }],
1919 ], 1926 ],
1920 }, 1927 },
1921 ], 1928 ],
1922 }], 1929 }],
1923 ], 1930 ],
1924 } 1931 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/test/data/cast_certificate/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698