| OLD | NEW |
| 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 Loading... |
| 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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 '../build/linux/system.gyp:ssl', | 1262 '../build/linux/system.gyp:ssl', |
| 1259 ], | 1263 ], |
| 1260 }, { | 1264 }, { |
| 1261 'dependencies': [ | 1265 'dependencies': [ |
| 1262 '../third_party/nss/nss.gyp:nspr', | 1266 '../third_party/nss/nss.gyp:nspr', |
| 1263 '../third_party/nss/nss.gyp:nss', | 1267 '../third_party/nss/nss.gyp:nss', |
| 1264 ], | 1268 ], |
| 1265 }], | 1269 }], |
| 1266 ], | 1270 ], |
| 1267 }], | 1271 }], |
| 1272 ['safe_browsing == 2 and OS != "ios"', { |
| 1273 'dependencies': [ |
| 1274 'components.gyp:safe_browsing_db_mobile', |
| 1275 ], |
| 1276 'sources': [ |
| 1277 '<@(safe_browsing_db_mobile_unittest_sources)', |
| 1278 ], |
| 1279 }], |
| 1268 ], | 1280 ], |
| 1269 }, { # 'OS == "ios"' | 1281 }, { # 'OS == "ios"' |
| 1270 'sources': [ | 1282 'sources': [ |
| 1271 'webp_transcode/webp_decoder_unittest.mm', | 1283 'webp_transcode/webp_decoder_unittest.mm', |
| 1272 'webp_transcode/webp_network_client_unittest.mm', | 1284 'webp_transcode/webp_network_client_unittest.mm', |
| 1273 ], | 1285 ], |
| 1274 'sources/': [ | 1286 'sources/': [ |
| 1275 # Exclude all tests that depends on //content (based on layered- | 1287 # Exclude all tests that depends on //content (based on layered- |
| 1276 # component directory structure). | 1288 # component directory structure). |
| 1277 ['exclude', '^[^/]*/content/'], | 1289 ['exclude', '^[^/]*/content/'], |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1889 'dependencies': [ | 1901 'dependencies': [ |
| 1890 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1902 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1891 ], | 1903 ], |
| 1892 }], | 1904 }], |
| 1893 ], | 1905 ], |
| 1894 }, | 1906 }, |
| 1895 ], | 1907 ], |
| 1896 }], | 1908 }], |
| 1897 ], | 1909 ], |
| 1898 } | 1910 } |
| OLD | NEW |