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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 'rappor_unittest_sources': [ | 484 'rappor_unittest_sources': [ |
485 'rappor/bloom_filter_unittest.cc', | 485 'rappor/bloom_filter_unittest.cc', |
486 'rappor/byte_vector_utils_unittest.cc', | 486 'rappor/byte_vector_utils_unittest.cc', |
487 'rappor/log_uploader_unittest.cc', | 487 'rappor/log_uploader_unittest.cc', |
488 'rappor/rappor_metric_unittest.cc', | 488 'rappor/rappor_metric_unittest.cc', |
489 'rappor/rappor_prefs_unittest.cc', | 489 'rappor/rappor_prefs_unittest.cc', |
490 'rappor/rappor_service_unittest.cc', | 490 'rappor/rappor_service_unittest.cc', |
491 'rappor/rappor_utils_unittest.cc', | 491 'rappor/rappor_utils_unittest.cc', |
492 'rappor/sampler_unittest.cc', | 492 'rappor/sampler_unittest.cc', |
493 ], | 493 ], |
| 494 'rlz_unittest_sources': [ |
| 495 'rlz/rlz_tracker_unittest.cc', |
| 496 ], |
494 'safe_json_unittest_sources': [ | 497 'safe_json_unittest_sources': [ |
495 'safe_json/json_sanitizer_unittest.cc', | 498 'safe_json/json_sanitizer_unittest.cc', |
496 ], | 499 ], |
497 'scheduler_unittest_sources': [ | 500 'scheduler_unittest_sources': [ |
498 'scheduler/child/idle_helper_unittest.cc', | 501 'scheduler/child/idle_helper_unittest.cc', |
499 'scheduler/child/nestable_task_runner_for_test.cc', | 502 'scheduler/child/nestable_task_runner_for_test.cc', |
500 'scheduler/child/nestable_task_runner_for_test.h', | 503 'scheduler/child/nestable_task_runner_for_test.h', |
501 'scheduler/child/prioritizing_task_queue_selector_unittest.cc', | 504 'scheduler/child/prioritizing_task_queue_selector_unittest.cc', |
502 'scheduler/child/scheduler_helper_unittest.cc', | 505 'scheduler/child/scheduler_helper_unittest.cc', |
503 'scheduler/child/task_queue_manager_unittest.cc', | 506 'scheduler/child/task_queue_manager_unittest.cc', |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
863 'components.gyp:variations_http_provider', | 866 'components.gyp:variations_http_provider', |
864 'components.gyp:wallpaper', | 867 'components.gyp:wallpaper', |
865 'components.gyp:web_resource', | 868 'components.gyp:web_resource', |
866 'components.gyp:web_resource_test_support', | 869 'components.gyp:web_resource_test_support', |
867 'components_resources.gyp:components_resources', | 870 'components_resources.gyp:components_resources', |
868 'components_strings.gyp:components_strings', | 871 'components_strings.gyp:components_strings', |
869 'components_tests_pak', | 872 'components_tests_pak', |
870 'mime_util/mime_util.gyp:mime_util', | 873 'mime_util/mime_util.gyp:mime_util', |
871 ], | 874 ], |
872 'conditions': [ | 875 'conditions': [ |
| 876 ['enable_rlz_support==1', { |
| 877 'sources': [ |
| 878 '<@(rlz_unittest_sources)', |
| 879 ], |
| 880 'dependencies': [ |
| 881 '../net/net.gyp:net_test_support', |
| 882 '../rlz/rlz.gyp:test_support_rlz', |
| 883 'components.gyp:rlz', |
| 884 ], |
| 885 'conditions': [ |
| 886 ['OS == "ios"', { |
| 887 'dependencies': [ |
| 888 '../ui/base/ui_base.gyp:ui_base', |
| 889 ], |
| 890 }], |
| 891 ], |
| 892 }], |
873 ['toolkit_views == 1', { | 893 ['toolkit_views == 1', { |
874 'sources': [ | 894 'sources': [ |
875 'bookmarks/browser/bookmark_node_data_unittest.cc', | 895 'bookmarks/browser/bookmark_node_data_unittest.cc', |
876 'constrained_window/constrained_window_views_unittest.cc', | 896 'constrained_window/constrained_window_views_unittest.cc', |
877 ], | 897 ], |
878 'dependencies': [ | 898 'dependencies': [ |
879 '<(DEPTH)/ui/views/views.gyp:views', | 899 '<(DEPTH)/ui/views/views.gyp:views', |
880 '<(DEPTH)/ui/views/views.gyp:views_test_support', | 900 '<(DEPTH)/ui/views/views.gyp:views_test_support', |
881 'components.gyp:constrained_window', | 901 'components.gyp:constrained_window', |
882 ] | 902 ] |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1515 ], | 1535 ], |
1516 'variables': { | 1536 'variables': { |
1517 'test_suite_name': 'components_unittests', | 1537 'test_suite_name': 'components_unittests', |
1518 }, | 1538 }, |
1519 'includes': [ '../build/apk_test.gypi' ], | 1539 'includes': [ '../build/apk_test.gypi' ], |
1520 }, | 1540 }, |
1521 ], | 1541 ], |
1522 }], | 1542 }], |
1523 ], | 1543 ], |
1524 } | 1544 } |
OLD | NEW |