OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'precache/core/precache_url_table_unittest.cc', | 108 'precache/core/precache_url_table_unittest.cc', |
109 'rappor/bloom_filter_unittest.cc', | 109 'rappor/bloom_filter_unittest.cc', |
110 'rappor/byte_vector_utils_unittest.cc', | 110 'rappor/byte_vector_utils_unittest.cc', |
111 'rappor/log_uploader_unittest.cc', | 111 'rappor/log_uploader_unittest.cc', |
112 'rappor/rappor_metric_unittest.cc', | 112 'rappor/rappor_metric_unittest.cc', |
113 'rappor/rappor_service_unittest.cc', | 113 'rappor/rappor_service_unittest.cc', |
114 'sessions/serialized_navigation_entry_unittest.cc', | 114 'sessions/serialized_navigation_entry_unittest.cc', |
115 'signin/core/browser/mutable_profile_oauth2_token_service_unittest.c
c', | 115 'signin/core/browser/mutable_profile_oauth2_token_service_unittest.c
c', |
116 'signin/core/browser/signin_error_controller_unittest.cc', | 116 'signin/core/browser/signin_error_controller_unittest.cc', |
117 'signin/core/browser/webdata/token_service_table_unittest.cc', | 117 'signin/core/browser/webdata/token_service_table_unittest.cc', |
| 118 'signin/ios/browser/profile_oauth2_token_service_ios_unittest.mm', |
118 'storage_monitor/image_capture_device_manager_unittest.mm', | 119 'storage_monitor/image_capture_device_manager_unittest.mm', |
119 'storage_monitor/media_storage_util_unittest.cc', | 120 'storage_monitor/media_storage_util_unittest.cc', |
120 'storage_monitor/media_transfer_protocol_device_observer_linux_unitt
est.cc', | 121 'storage_monitor/media_transfer_protocol_device_observer_linux_unitt
est.cc', |
121 'storage_monitor/storage_info_unittest.cc', | 122 'storage_monitor/storage_info_unittest.cc', |
122 'storage_monitor/storage_monitor_chromeos_unittest.cc', | 123 'storage_monitor/storage_monitor_chromeos_unittest.cc', |
123 'storage_monitor/storage_monitor_linux_unittest.cc', | 124 'storage_monitor/storage_monitor_linux_unittest.cc', |
124 'storage_monitor/storage_monitor_mac_unittest.mm', | 125 'storage_monitor/storage_monitor_mac_unittest.mm', |
125 'storage_monitor/storage_monitor_unittest.cc', | 126 'storage_monitor/storage_monitor_unittest.cc', |
126 'storage_monitor/storage_monitor_win_unittest.cc', | 127 'storage_monitor/storage_monitor_win_unittest.cc', |
127 'sync_driver/model_association_manager_unittest.cc', | 128 'sync_driver/model_association_manager_unittest.cc', |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 ['include', '^json_schema/'], | 292 ['include', '^json_schema/'], |
292 ['include', '^keyed_service/core/'], | 293 ['include', '^keyed_service/core/'], |
293 ['include', '^language_usage_metrics/'], | 294 ['include', '^language_usage_metrics/'], |
294 ['include', '^password_manager/'], | 295 ['include', '^password_manager/'], |
295 ['include', '^precache/core/'], | 296 ['include', '^precache/core/'], |
296 ['include', '^signin/'], | 297 ['include', '^signin/'], |
297 ['include', '^sync_driver/'], | 298 ['include', '^sync_driver/'], |
298 ['include', '^translate/'], | 299 ['include', '^translate/'], |
299 ['include', '^variations/'], | 300 ['include', '^variations/'], |
300 ], | 301 ], |
| 302 'dependencies': [ |
| 303 # Dependencies of signin |
| 304 'components.gyp:signin_ios_browser', |
| 305 '../ios/ios_tests.gyp:test_support_ios', |
| 306 ], |
301 'actions': [ | 307 'actions': [ |
302 { | 308 { |
303 'action_name': 'copy_test_data', | 309 'action_name': 'copy_test_data', |
304 'variables': { | 310 'variables': { |
305 'test_data_files': [ | 311 'test_data_files': [ |
306 'test/data', | 312 'test/data', |
307 ], | 313 ], |
308 'test_data_prefix': 'components', | 314 'test_data_prefix': 'components', |
309 }, | 315 }, |
310 'includes': [ '../build/copy_test_data_ios.gypi' ], | 316 'includes': [ '../build/copy_test_data_ios.gypi' ], |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 'dependencies': [ | 638 'dependencies': [ |
633 '../base/allocator/allocator.gyp:allocator', | 639 '../base/allocator/allocator.gyp:allocator', |
634 ], | 640 ], |
635 }], | 641 }], |
636 ], | 642 ], |
637 }, | 643 }, |
638 ], | 644 ], |
639 }], | 645 }], |
640 ], | 646 ], |
641 } | 647 } |
OLD | NEW |