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

Side by Side Diff: components/components_tests.gyp

Issue 2158833002: Factor DocumentSubresourceFilter out of SubresourceFilterAgent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from pkalinnikov@ Created 4 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
« no previous file with comments | « components/BUILD.gn ('k') | components/subresource_filter.gypi » ('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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 'storage_monitor/storage_monitor_chromeos_unittest.cc', 791 'storage_monitor/storage_monitor_chromeos_unittest.cc',
792 'storage_monitor/storage_monitor_linux_unittest.cc', 792 'storage_monitor/storage_monitor_linux_unittest.cc',
793 'storage_monitor/storage_monitor_mac_unittest.mm', 793 'storage_monitor/storage_monitor_mac_unittest.mm',
794 'storage_monitor/storage_monitor_unittest.cc', 794 'storage_monitor/storage_monitor_unittest.cc',
795 'storage_monitor/storage_monitor_win_unittest.cc', 795 'storage_monitor/storage_monitor_win_unittest.cc',
796 ], 796 ],
797 'subresource_filter_content_browser_unittest_sources': [ 797 'subresource_filter_content_browser_unittest_sources': [
798 'subresource_filter/content/browser/content_ruleset_distributor_unittest.c c', 798 'subresource_filter/content/browser/content_ruleset_distributor_unittest.c c',
799 'subresource_filter/content/browser/content_subresource_filter_driver_fact ory_unittest.cc', 799 'subresource_filter/content/browser/content_subresource_filter_driver_fact ory_unittest.cc',
800 ], 800 ],
801 'subresource_filter_core_browser_unittest_sources': [ 801 'subresource_filter_content_renderer_unittest_sources': [
802 'subresource_filter/content/renderer/document_subresource_filter_unittest. cc',
803 'subresource_filter/content/renderer/subresource_filter_agent_unittest.cc' ,
804 ],
805 'subresource_filter_core_browser_unittest_sources': [
802 'subresource_filter/core/browser/ruleset_service_unittest.cc', 806 'subresource_filter/core/browser/ruleset_service_unittest.cc',
803 'subresource_filter/core/browser/subresource_filter_features_unittest.cc', 807 'subresource_filter/core/browser/subresource_filter_features_unittest.cc',
804 ], 808 ],
805 'subresource_filter_core_common_unittest_sources': [ 809 'subresource_filter_core_common_unittest_sources': [
806 'subresource_filter/core/common/closed_hash_map_unittest.cc', 810 'subresource_filter/core/common/closed_hash_map_unittest.cc',
807 'subresource_filter/core/common/fuzzy_pattern_matching_unittest.cc', 811 'subresource_filter/core/common/fuzzy_pattern_matching_unittest.cc',
808 'subresource_filter/core/common/knuth_morris_pratt_unittest.cc', 812 'subresource_filter/core/common/knuth_morris_pratt_unittest.cc',
809 'subresource_filter/core/common/ngram_extractor_unittest.cc', 813 'subresource_filter/core/common/ngram_extractor_unittest.cc',
810 'subresource_filter/core/common/string_splitter_unittest.cc', 814 'subresource_filter/core/common/string_splitter_unittest.cc',
811 'subresource_filter/core/common/url_pattern_matching_unittest.cc', 815 'subresource_filter/core/common/url_pattern_matching_unittest.cc',
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 'components.gyp:search_provider_logos', 1223 'components.gyp:search_provider_logos',
1220 'components.gyp:security_state', 1224 'components.gyp:security_state',
1221 'components.gyp:sessions_test_support', 1225 'components.gyp:sessions_test_support',
1222 'components.gyp:signin_core_browser', 1226 'components.gyp:signin_core_browser',
1223 'components.gyp:signin_core_browser_test_support', 1227 'components.gyp:signin_core_browser_test_support',
1224 'components.gyp:ssl_config', 1228 'components.gyp:ssl_config',
1225 'components.gyp:ssl_errors', 1229 'components.gyp:ssl_errors',
1226 'components.gyp:subresource_filter_core_browser_test_support', 1230 'components.gyp:subresource_filter_core_browser_test_support',
1227 'components.gyp:subresource_filter_core_browser', 1231 'components.gyp:subresource_filter_core_browser',
1228 'components.gyp:subresource_filter_core_common', 1232 'components.gyp:subresource_filter_core_common',
1233 'components.gyp:subresource_filter_core_common_test_support',
1229 'components.gyp:suggestions', 1234 'components.gyp:suggestions',
1230 'components.gyp:supervised_user_error_page', 1235 'components.gyp:supervised_user_error_page',
1231 'components.gyp:sync_bookmarks', 1236 'components.gyp:sync_bookmarks',
1232 'components.gyp:sync_driver', 1237 'components.gyp:sync_driver',
1233 'components.gyp:sync_driver_test_support', 1238 'components.gyp:sync_driver_test_support',
1234 'components.gyp:sync_sessions', 1239 'components.gyp:sync_sessions',
1235 'components.gyp:sync_sessions_test_support', 1240 'components.gyp:sync_sessions_test_support',
1236 'components.gyp:syncable_prefs_test_support', 1241 'components.gyp:syncable_prefs_test_support',
1237 'components.gyp:toolbar_test_support', 1242 'components.gyp:toolbar_test_support',
1238 'components.gyp:translate_core_browser', 1243 'components.gyp:translate_core_browser',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 '<@(network_hints_unittest_sources)', 1320 '<@(network_hints_unittest_sources)',
1316 '<@(ntp_tiles_unittest_sources)', 1321 '<@(ntp_tiles_unittest_sources)',
1317 '<@(packed_ct_ev_whitelist_unittest_sources)', 1322 '<@(packed_ct_ev_whitelist_unittest_sources)',
1318 '<@(page_load_metrics_unittest_sources)', 1323 '<@(page_load_metrics_unittest_sources)',
1319 '<@(power_unittest_sources)', 1324 '<@(power_unittest_sources)',
1320 '<@(safe_browsing_db_unittest_sources)', 1325 '<@(safe_browsing_db_unittest_sources)',
1321 '<@(safe_json_unittest_sources)', 1326 '<@(safe_json_unittest_sources)',
1322 '<@(scheduler_unittest_sources)', 1327 '<@(scheduler_unittest_sources)',
1323 '<@(storage_monitor_unittest_sources)', 1328 '<@(storage_monitor_unittest_sources)',
1324 '<@(subresource_filter_content_browser_unittest_sources)', 1329 '<@(subresource_filter_content_browser_unittest_sources)',
1330 '<@(subresource_filter_content_renderer_unittest_sources)',
1325 '<@(tracing_unittest_sources)', 1331 '<@(tracing_unittest_sources)',
1326 '<@(visitedlink_unittest_sources)', 1332 '<@(visitedlink_unittest_sources)',
1327 '<@(wallpaper_unittest_sources)', 1333 '<@(wallpaper_unittest_sources)',
1328 '<@(web_cache_unittest_sources)', 1334 '<@(web_cache_unittest_sources)',
1329 '<@(webcrypto_unittest_sources)', 1335 '<@(webcrypto_unittest_sources)',
1330 '<@(web_modal_unittest_sources)', 1336 '<@(web_modal_unittest_sources)',
1331 '<@(zoom_unittest_sources)', 1337 '<@(zoom_unittest_sources)',
1332 ], 1338 ],
1333 'dependencies': [ 1339 'dependencies': [
1334 '../content/content_shell_and_tests.gyp:test_support_content', 1340 '../content/content_shell_and_tests.gyp:test_support_content',
(...skipping 30 matching lines...) Expand all
1365 'components.gyp:power', 1371 'components.gyp:power',
1366 'components.gyp:precache_content', 1372 'components.gyp:precache_content',
1367 'components.gyp:safe_browsing_db', 1373 'components.gyp:safe_browsing_db',
1368 'components.gyp:safe_json', 1374 'components.gyp:safe_json',
1369 'components.gyp:safe_json_test_support', 1375 'components.gyp:safe_json_test_support',
1370 'components.gyp:sessions_content', 1376 'components.gyp:sessions_content',
1371 'components.gyp:storage_monitor', 1377 'components.gyp:storage_monitor',
1372 'components.gyp:storage_monitor_test_support', 1378 'components.gyp:storage_monitor_test_support',
1373 'components.gyp:subresource_filter_content_browser', 1379 'components.gyp:subresource_filter_content_browser',
1374 'components.gyp:subresource_filter_content_common', 1380 'components.gyp:subresource_filter_content_common',
1381 'components.gyp:subresource_filter_content_renderer',
1375 'components.gyp:test_database_manager', 1382 'components.gyp:test_database_manager',
1376 'components.gyp:url_matcher', 1383 'components.gyp:url_matcher',
1377 'components.gyp:visitedlink_browser', 1384 'components.gyp:visitedlink_browser',
1378 'components.gyp:visitedlink_renderer', 1385 'components.gyp:visitedlink_renderer',
1379 'components.gyp:wallpaper', 1386 'components.gyp:wallpaper',
1380 'components.gyp:web_cache_browser', 1387 'components.gyp:web_cache_browser',
1381 'components.gyp:web_modal', 1388 'components.gyp:web_modal',
1382 'components.gyp:web_modal_test_support', 1389 'components.gyp:web_modal_test_support',
1383 'components.gyp:zoom', 1390 'components.gyp:zoom',
1384 'scheduler/scheduler.gyp:scheduler', 1391 'scheduler/scheduler.gyp:scheduler',
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 'dependencies': [ 2042 'dependencies': [
2036 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2043 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2037 ], 2044 ],
2038 }], 2045 }],
2039 ], 2046 ],
2040 }, 2047 },
2041 ], 2048 ],
2042 }], 2049 }],
2043 ], 2050 ],
2044 } 2051 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/subresource_filter.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698