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

Side by Side Diff: components/components_tests.gyp

Issue 1829023002: Add fake for InstanceIDWithSubtype.java, in order to re-use unit test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid2jni
Patch Set: Tweaks Created 4 years, 8 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 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 'data_usage/android/traffic_stats_amortizer_unittest.cc', 1394 'data_usage/android/traffic_stats_amortizer_unittest.cc',
1395 'invalidation/impl/invalidation_logger_unittest.cc', 1395 'invalidation/impl/invalidation_logger_unittest.cc',
1396 'invalidation/impl/invalidation_service_android_unittest.cc', 1396 'invalidation/impl/invalidation_service_android_unittest.cc',
1397 ], 1397 ],
1398 'sources!': [ 1398 'sources!': [
1399 'gcm_driver/gcm_account_mapper_unittest.cc', 1399 'gcm_driver/gcm_account_mapper_unittest.cc',
1400 'gcm_driver/gcm_channel_status_request_unittest.cc', 1400 'gcm_driver/gcm_channel_status_request_unittest.cc',
1401 'gcm_driver/gcm_client_impl_unittest.cc', 1401 'gcm_driver/gcm_client_impl_unittest.cc',
1402 'gcm_driver/gcm_driver_desktop_unittest.cc', 1402 'gcm_driver/gcm_driver_desktop_unittest.cc',
1403 'gcm_driver/gcm_stats_recorder_impl_unittest.cc', 1403 'gcm_driver/gcm_stats_recorder_impl_unittest.cc',
1404 'gcm_driver/instance_id/instance_id_driver_unittest.cc',
1405 'sessions/core/session_backend_unittest.cc', 1404 'sessions/core/session_backend_unittest.cc',
1406 'storage_monitor/media_storage_util_unittest.cc', 1405 'storage_monitor/media_storage_util_unittest.cc',
1407 'storage_monitor/storage_info_unittest.cc', 1406 'storage_monitor/storage_info_unittest.cc',
1408 'storage_monitor/storage_monitor_unittest.cc', 1407 'storage_monitor/storage_monitor_unittest.cc',
1409 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 1408 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
1410 ], 1409 ],
1411 'dependencies': [ 1410 'dependencies': [
1411 # Required by instance_id_unittest_sources for
1412 # NestedMessagePumpAndroid (and NestedSystemMessageHandler).
1413 '../content/content_shell_and_tests.gyp:layouttest_support_content',
Peter Beverloo 2016/04/11 14:57:05 I am not comfortable with adding this dependency,
johnme 2016/04/14 18:32:41 Removed.
1414 '../content/content.gyp:content_java',
1415 '../testing/android/native_test.gyp:native_test_native_code',
1412 'components.gyp:data_usage_android', 1416 'components.gyp:data_usage_android',
1413 'components.gyp:safe_json_java', 1417 'components.gyp:safe_json_java',
1414 'components.gyp:variations_java', 1418 'components.gyp:variations_java',
1415 '../content/content.gyp:content_java',
1416 '../testing/android/native_test.gyp:native_test_native_code',
1417 ], 1419 ],
1418 'dependencies!': [ 1420 'dependencies!': [
1419 'components.gyp:storage_monitor', 1421 'components.gyp:storage_monitor',
1420 'components.gyp:storage_monitor_test_support', 1422 'components.gyp:storage_monitor_test_support',
1421 'components.gyp:web_modal', 1423 'components.gyp:web_modal',
1422 'components.gyp:web_modal_test_support', 1424 'components.gyp:web_modal_test_support',
1423 ], 1425 ],
1424 }, { 1426 }, {
1425 'sources': [ 1427 'sources': [
1426 '<@(invalidation_unittest_sources)', 1428 '<@(invalidation_unittest_sources)',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 }], 1662 }],
1661 ], 1663 ],
1662 }, 1664 },
1663 'includes': [ '../build/apk_browsertest.gypi' ], 1665 'includes': [ '../build/apk_browsertest.gypi' ],
1664 }, 1666 },
1665 { 1667 {
1666 'target_name': 'components_unittests_apk', 1668 'target_name': 'components_unittests_apk',
1667 'isolate_file': 'components_unittests.isolate', 1669 'isolate_file': 'components_unittests.isolate',
1668 'type': 'none', 1670 'type': 'none',
1669 'dependencies': [ 1671 'dependencies': [
1672 # Required by instance_id_unittest_sources for
1673 # NestedSystemMessageHandler.java
1674 '../content/content_shell_and_tests.gyp:content_java_test_support',
1670 'components_unittests', 1675 'components_unittests',
1676 'components.gyp:instance_id_driver_java',
1671 'components.gyp:invalidation_java', 1677 'components.gyp:invalidation_java',
1672 'components.gyp:signin_core_browser_java', 1678 'components.gyp:signin_core_browser_java',
1673 'components.gyp:web_restrictions_test_support_java', 1679 'components.gyp:web_restrictions_test_support_java',
1674 ], 1680 ],
1675 'variables': { 1681 'variables': {
1676 'test_suite_name': 'components_unittests', 1682 'test_suite_name': 'components_unittests',
1677 }, 1683 },
1678 'includes': [ '../build/apk_test.gypi' ], 1684 'includes': [ '../build/apk_test.gypi' ],
1679 }, 1685 },
1680 { 1686 {
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1924 'dependencies': [ 1930 'dependencies': [
1925 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1931 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1926 ], 1932 ],
1927 }], 1933 }],
1928 ], 1934 ],
1929 }, 1935 },
1930 ], 1936 ],
1931 }], 1937 }],
1932 ], 1938 ],
1933 } 1939 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698