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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', | 593 '$(SDKROOT)/System/Library/Frameworks/AddressBook.framework', |
594 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 594 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
595 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo
rk', | 595 '$(SDKROOT)/System/Library/Frameworks/ImageCaptureCore.framewo
rk', |
596 ], | 596 ], |
597 }, | 597 }, |
598 'sources!': [ | 598 'sources!': [ |
599 'password_manager/core/browser/password_store_default_unittest.c
c', | 599 'password_manager/core/browser/password_store_default_unittest.c
c', |
600 ], | 600 ], |
601 }], | 601 }], |
602 ['OS == "android"', { | 602 ['OS == "android"', { |
| 603 'sources': [ |
| 604 'invalidation/invalidation_service_android_unittest.cc', |
| 605 ], |
603 'sources!': [ | 606 'sources!': [ |
604 'gcm_driver/gcm_account_mapper_unittest.cc', | 607 'gcm_driver/gcm_account_mapper_unittest.cc', |
605 'gcm_driver/gcm_channel_status_request_unittest.cc', | 608 'gcm_driver/gcm_channel_status_request_unittest.cc', |
606 'gcm_driver/gcm_client_impl_unittest.cc', | 609 'gcm_driver/gcm_client_impl_unittest.cc', |
607 'gcm_driver/gcm_delayed_task_controller_unittest.cc', | 610 'gcm_driver/gcm_delayed_task_controller_unittest.cc', |
608 'gcm_driver/gcm_driver_desktop_unittest.cc', | 611 'gcm_driver/gcm_driver_desktop_unittest.cc', |
| 612 'gcm_driver/gcm_stats_recorder_impl_unittest.cc', |
609 'feedback/feedback_common_unittest.cc', | 613 'feedback/feedback_common_unittest.cc', |
610 'feedback/feedback_data_unittest.cc', | 614 'feedback/feedback_data_unittest.cc', |
611 'feedback/feedback_uploader_unittest.cc', | 615 'feedback/feedback_uploader_unittest.cc', |
612 'gcm_driver/gcm_stats_recorder_impl_unittest.cc', | |
613 'signin/core/browser/mutable_profile_oauth2_token_service_unitte
st.cc', | 616 'signin/core/browser/mutable_profile_oauth2_token_service_unitte
st.cc', |
614 'storage_monitor/media_storage_util_unittest.cc', | 617 'storage_monitor/media_storage_util_unittest.cc', |
615 'storage_monitor/storage_info_unittest.cc', | 618 'storage_monitor/storage_info_unittest.cc', |
616 'storage_monitor/storage_monitor_unittest.cc', | 619 'storage_monitor/storage_monitor_unittest.cc', |
617 'web_modal/web_contents_modal_dialog_manager_unittest.cc', | 620 'web_modal/web_contents_modal_dialog_manager_unittest.cc', |
618 ], | 621 ], |
619 'dependencies': [ | 622 'dependencies': [ |
620 '../testing/android/native_test.gyp:native_test_native_code', | 623 '../testing/android/native_test.gyp:native_test_native_code', |
621 'components.gyp:history_core_android', | 624 'components.gyp:history_core_android', |
622 ], | 625 ], |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 }, | 838 }, |
836 ], | 839 ], |
837 'conditions': [ | 840 'conditions': [ |
838 ['OS == "android"', { | 841 ['OS == "android"', { |
839 'targets': [ | 842 'targets': [ |
840 { | 843 { |
841 'target_name': 'components_unittests_apk', | 844 'target_name': 'components_unittests_apk', |
842 'type': 'none', | 845 'type': 'none', |
843 'dependencies': [ | 846 'dependencies': [ |
844 'components_unittests', | 847 'components_unittests', |
| 848 'components.gyp:invalidation_java', |
845 ], | 849 ], |
846 'variables': { | 850 'variables': { |
847 'test_suite_name': 'components_unittests', | 851 'test_suite_name': 'components_unittests', |
848 }, | 852 }, |
849 'includes': [ '../build/apk_test.gypi' ], | 853 'includes': [ '../build/apk_test.gypi' ], |
850 }, | 854 }, |
851 ], | 855 ], |
852 }], | 856 }], |
853 ], | 857 ], |
854 }], | 858 }], |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 'dependencies': [ | 959 'dependencies': [ |
956 '../base/allocator/allocator.gyp:allocator', | 960 '../base/allocator/allocator.gyp:allocator', |
957 ], | 961 ], |
958 }], | 962 }], |
959 ], | 963 ], |
960 }, | 964 }, |
961 ], | 965 ], |
962 }], | 966 }], |
963 ], | 967 ], |
964 } | 968 } |
OLD | NEW |