| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 'rappor/log_uploader_unittest.cc', | 610 'rappor/log_uploader_unittest.cc', |
| 611 'rappor/rappor_metric_unittest.cc', | 611 'rappor/rappor_metric_unittest.cc', |
| 612 'rappor/rappor_prefs_unittest.cc', | 612 'rappor/rappor_prefs_unittest.cc', |
| 613 'rappor/rappor_service_unittest.cc', | 613 'rappor/rappor_service_unittest.cc', |
| 614 'rappor/rappor_utils_unittest.cc', | 614 'rappor/rappor_utils_unittest.cc', |
| 615 'rappor/sampler_unittest.cc', | 615 'rappor/sampler_unittest.cc', |
| 616 ], | 616 ], |
| 617 'rlz_unittest_sources': [ | 617 'rlz_unittest_sources': [ |
| 618 'rlz/rlz_tracker_unittest.cc', | 618 'rlz/rlz_tracker_unittest.cc', |
| 619 ], | 619 ], |
| 620 'safe_browsing_db_mobile_unittest_sources': [ |
| 621 'safe_browsing_db/remote_database_manager_unittest.cc', |
| 622 'safe_browsing_db/safe_browsing_api_handler_unittest.cc', |
| 623 ], |
| 620 'safe_browsing_db_unittest_sources': [ | 624 'safe_browsing_db_unittest_sources': [ |
| 621 'safe_browsing_db/prefix_set_unittest.cc', | 625 'safe_browsing_db/prefix_set_unittest.cc', |
| 622 'safe_browsing_db/util_unittest.cc', | 626 'safe_browsing_db/util_unittest.cc', |
| 623 ], | 627 ], |
| 624 'safe_json_unittest_sources': [ | 628 'safe_json_unittest_sources': [ |
| 625 'safe_json/json_sanitizer_unittest.cc', | 629 'safe_json/json_sanitizer_unittest.cc', |
| 626 'safe_json/testing_json_parser_unittest.cc', | 630 'safe_json/testing_json_parser_unittest.cc', |
| 627 ], | 631 ], |
| 628 'scheduler_unittest_sources': [ | 632 'scheduler_unittest_sources': [ |
| 629 'scheduler/base/task_queue_manager_delegate_for_test.cc', | 633 'scheduler/base/task_queue_manager_delegate_for_test.cc', |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1265 '../build/linux/system.gyp:ssl', | 1269 '../build/linux/system.gyp:ssl', |
| 1266 ], | 1270 ], |
| 1267 }, { | 1271 }, { |
| 1268 'dependencies': [ | 1272 'dependencies': [ |
| 1269 '../third_party/nss/nss.gyp:nspr', | 1273 '../third_party/nss/nss.gyp:nspr', |
| 1270 '../third_party/nss/nss.gyp:nss', | 1274 '../third_party/nss/nss.gyp:nss', |
| 1271 ], | 1275 ], |
| 1272 }], | 1276 }], |
| 1273 ], | 1277 ], |
| 1274 }], | 1278 }], |
| 1279 ['safe_browsing == 2 and OS != "ios"', { |
| 1280 'dependencies': [ |
| 1281 'components.gyp:safe_browsing_db_mobile', |
| 1282 ], |
| 1283 'sources': [ |
| 1284 '<@(safe_browsing_db_mobile_unittest_sources)', |
| 1285 ], |
| 1286 }], |
| 1275 ], | 1287 ], |
| 1276 }, { # 'OS == "ios"' | 1288 }, { # 'OS == "ios"' |
| 1277 'sources': [ | 1289 'sources': [ |
| 1278 'webp_transcode/webp_decoder_unittest.mm', | 1290 'webp_transcode/webp_decoder_unittest.mm', |
| 1279 'webp_transcode/webp_network_client_unittest.mm', | 1291 'webp_transcode/webp_network_client_unittest.mm', |
| 1280 ], | 1292 ], |
| 1281 'sources/': [ | 1293 'sources/': [ |
| 1282 # Exclude all tests that depends on //content (based on layered- | 1294 # Exclude all tests that depends on //content (based on layered- |
| 1283 # component directory structure). | 1295 # component directory structure). |
| 1284 ['exclude', '^[^/]*/content/'], | 1296 ['exclude', '^[^/]*/content/'], |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 'dependencies': [ | 1886 'dependencies': [ |
| 1875 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1887 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1876 ], | 1888 ], |
| 1877 }], | 1889 }], |
| 1878 ], | 1890 ], |
| 1879 }, | 1891 }, |
| 1880 ], | 1892 ], |
| 1881 }], | 1893 }], |
| 1882 ], | 1894 ], |
| 1883 } | 1895 } |
| OLD | NEW |