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

Side by Side Diff: components/components_tests.gyp

Issue 1212163011: Componentize chrome/browser/rlz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation with gn Created 5 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
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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 'rappor_unittest_sources': [ 471 'rappor_unittest_sources': [
472 'rappor/bloom_filter_unittest.cc', 472 'rappor/bloom_filter_unittest.cc',
473 'rappor/byte_vector_utils_unittest.cc', 473 'rappor/byte_vector_utils_unittest.cc',
474 'rappor/log_uploader_unittest.cc', 474 'rappor/log_uploader_unittest.cc',
475 'rappor/rappor_metric_unittest.cc', 475 'rappor/rappor_metric_unittest.cc',
476 'rappor/rappor_prefs_unittest.cc', 476 'rappor/rappor_prefs_unittest.cc',
477 'rappor/rappor_service_unittest.cc', 477 'rappor/rappor_service_unittest.cc',
478 'rappor/rappor_utils_unittest.cc', 478 'rappor/rappor_utils_unittest.cc',
479 'rappor/sampler_unittest.cc', 479 'rappor/sampler_unittest.cc',
480 ], 480 ],
481 'rlz_unittest_sources': [
482 'rlz/rlz_tracker_unittest.cc',
483 ],
481 'scheduler_unittest_sources': [ 484 'scheduler_unittest_sources': [
482 'scheduler/child/idle_helper_unittest.cc', 485 'scheduler/child/idle_helper_unittest.cc',
483 'scheduler/child/nestable_task_runner_for_test.cc', 486 'scheduler/child/nestable_task_runner_for_test.cc',
484 'scheduler/child/nestable_task_runner_for_test.h', 487 'scheduler/child/nestable_task_runner_for_test.h',
485 'scheduler/child/prioritizing_task_queue_selector_unittest.cc', 488 'scheduler/child/prioritizing_task_queue_selector_unittest.cc',
486 'scheduler/child/scheduler_helper_unittest.cc', 489 'scheduler/child/scheduler_helper_unittest.cc',
487 'scheduler/child/task_queue_manager_unittest.cc', 490 'scheduler/child/task_queue_manager_unittest.cc',
488 'scheduler/child/test_time_source.cc', 491 'scheduler/child/test_time_source.cc',
489 'scheduler/child/test_time_source.h', 492 'scheduler/child/test_time_source.h',
490 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc', 493 'scheduler/child/webthread_impl_for_worker_scheduler_unittest.cc',
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 'components.gyp:variations_http_provider', 845 'components.gyp:variations_http_provider',
843 'components.gyp:wallpaper', 846 'components.gyp:wallpaper',
844 'components.gyp:web_resource', 847 'components.gyp:web_resource',
845 'components.gyp:web_resource_test_support', 848 'components.gyp:web_resource_test_support',
846 'components_resources.gyp:components_resources', 849 'components_resources.gyp:components_resources',
847 'components_strings.gyp:components_strings', 850 'components_strings.gyp:components_strings',
848 'components_tests_pak', 851 'components_tests_pak',
849 'mime_util/mime_util.gyp:mime_util', 852 'mime_util/mime_util.gyp:mime_util',
850 ], 853 ],
851 'conditions': [ 854 'conditions': [
855 ['enable_rlz == 1', {
856 'sources': [
857 '<@(rlz_unittest_sources)',
858 ],
859 'dependencies': [
860 '../net/net.gyp:net_test_support',
861 '../rlz/rlz.gyp:test_support_rlz',
862 'components.gyp:rlz',
863 ],
864 'conditions': [
865 ['OS == "ios"', {
866 'dependencies': [
867 '../ui/base/ui_base.gyp:ui_base',
868 ],
869 }],
870 ],
871 }],
852 ['toolkit_views == 1', { 872 ['toolkit_views == 1', {
853 'sources': [ 873 'sources': [
854 'bookmarks/browser/bookmark_node_data_unittest.cc', 874 'bookmarks/browser/bookmark_node_data_unittest.cc',
855 'constrained_window/constrained_window_views_unittest.cc', 875 'constrained_window/constrained_window_views_unittest.cc',
856 ], 876 ],
857 'dependencies': [ 877 'dependencies': [
858 '<(DEPTH)/ui/views/views.gyp:views', 878 '<(DEPTH)/ui/views/views.gyp:views',
859 '<(DEPTH)/ui/views/views.gyp:views_test_support', 879 '<(DEPTH)/ui/views/views.gyp:views_test_support',
860 'components.gyp:constrained_window', 880 'components.gyp:constrained_window',
861 ] 881 ]
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1490 ], 1510 ],
1491 'variables': { 1511 'variables': {
1492 'test_suite_name': 'components_unittests', 1512 'test_suite_name': 'components_unittests',
1493 }, 1513 },
1494 'includes': [ '../build/apk_test.gypi' ], 1514 'includes': [ '../build/apk_test.gypi' ],
1495 }, 1515 },
1496 ], 1516 ],
1497 }], 1517 }],
1498 ], 1518 ],
1499 } 1519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698