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

Side by Side Diff: components/components_tests.gyp

Issue 1624723002: Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initialize the pointer to nullptr and check null before using. Created 4 years, 11 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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 'rappor/log_uploader_unittest.cc', 600 'rappor/log_uploader_unittest.cc',
601 'rappor/rappor_metric_unittest.cc', 601 'rappor/rappor_metric_unittest.cc',
602 'rappor/rappor_prefs_unittest.cc', 602 'rappor/rappor_prefs_unittest.cc',
603 'rappor/rappor_service_unittest.cc', 603 'rappor/rappor_service_unittest.cc',
604 'rappor/rappor_utils_unittest.cc', 604 'rappor/rappor_utils_unittest.cc',
605 'rappor/sampler_unittest.cc', 605 'rappor/sampler_unittest.cc',
606 ], 606 ],
607 'rlz_unittest_sources': [ 607 'rlz_unittest_sources': [
608 'rlz/rlz_tracker_unittest.cc', 608 'rlz/rlz_tracker_unittest.cc',
609 ], 609 ],
610 'safe_browsing_db_mobile_unittest_sources': [
611 'safe_browsing_db/remote_database_manager_unittest.cc',
612 'safe_browsing_db/safe_browsing_api_handler_unittest.cc',
613 ],
610 'safe_browsing_db_unittest_sources': [ 614 'safe_browsing_db_unittest_sources': [
611 'safe_browsing_db/prefix_set_unittest.cc', 615 'safe_browsing_db/prefix_set_unittest.cc',
612 'safe_browsing_db/util_unittest.cc', 616 'safe_browsing_db/util_unittest.cc',
613 ], 617 ],
614 'safe_json_unittest_sources': [ 618 'safe_json_unittest_sources': [
615 'safe_json/json_sanitizer_unittest.cc', 619 'safe_json/json_sanitizer_unittest.cc',
616 'safe_json/testing_json_parser_unittest.cc', 620 'safe_json/testing_json_parser_unittest.cc',
617 ], 621 ],
618 'scheduler_unittest_sources': [ 622 'scheduler_unittest_sources': [
619 'scheduler/base/task_queue_manager_delegate_for_test.cc', 623 'scheduler/base/task_queue_manager_delegate_for_test.cc',
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 '../build/linux/system.gyp:ssl', 1260 '../build/linux/system.gyp:ssl',
1257 ], 1261 ],
1258 }, { 1262 }, {
1259 'dependencies': [ 1263 'dependencies': [
1260 '../third_party/nss/nss.gyp:nspr', 1264 '../third_party/nss/nss.gyp:nspr',
1261 '../third_party/nss/nss.gyp:nss', 1265 '../third_party/nss/nss.gyp:nss',
1262 ], 1266 ],
1263 }], 1267 }],
1264 ], 1268 ],
1265 }], 1269 }],
1270 ['safe_browsing == 2 and OS != "ios"', {
1271 'dependencies': [
1272 'components.gyp:safe_browsing_db_mobile',
1273 ],
1274 'sources': [
1275 '<@(safe_browsing_db_mobile_unittest_sources)',
1276 ],
1277 }],
1266 ], 1278 ],
1267 }, { # 'OS == "ios"' 1279 }, { # 'OS == "ios"'
1268 'sources': [ 1280 'sources': [
1269 'webp_transcode/webp_decoder_unittest.mm', 1281 'webp_transcode/webp_decoder_unittest.mm',
1270 'webp_transcode/webp_network_client_unittest.mm', 1282 'webp_transcode/webp_network_client_unittest.mm',
1271 ], 1283 ],
1272 'sources/': [ 1284 'sources/': [
1273 # Exclude all tests that depends on //content (based on layered- 1285 # Exclude all tests that depends on //content (based on layered-
1274 # component directory structure). 1286 # component directory structure).
1275 ['exclude', '^[^/]*/content/'], 1287 ['exclude', '^[^/]*/content/'],
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 'dependencies': [ 1899 'dependencies': [
1888 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1900 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1889 ], 1901 ],
1890 }], 1902 }],
1891 ], 1903 ],
1892 }, 1904 },
1893 ], 1905 ],
1894 }], 1906 }],
1895 ], 1907 ],
1896 } 1908 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698