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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 249 |
250 # Dependencies of feedback | 250 # Dependencies of feedback |
251 'components.gyp:feedback_component', | 251 'components.gyp:feedback_component', |
252 | 252 |
253 # Dependencies of gcm | 253 # Dependencies of gcm |
254 'components.gyp:gcm_driver', | 254 'components.gyp:gcm_driver', |
255 'components.gyp:gcm_driver_test_support', | 255 'components.gyp:gcm_driver_test_support', |
256 | 256 |
257 # Dependencies of invalidation | 257 # Dependencies of invalidation |
258 'components.gyp:invalidation', | 258 'components.gyp:invalidation', |
| 259 'components.gyp:invalidation_test_support', |
259 | 260 |
260 # Dependencies of json_schema | 261 # Dependencies of json_schema |
261 'components.gyp:json_schema', | 262 'components.gyp:json_schema', |
262 | 263 |
263 # Dependencies of keyed_service | 264 # Dependencies of keyed_service |
264 'components.gyp:keyed_service_core', | 265 'components.gyp:keyed_service_core', |
265 | 266 |
266 # Dependencies of language_usage_metrics | 267 # Dependencies of language_usage_metrics |
267 'components.gyp:language_usage_metrics', | 268 'components.gyp:language_usage_metrics', |
268 | 269 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 'dependencies!': [ | 457 'dependencies!': [ |
457 'components.gyp:feedback_component', | 458 'components.gyp:feedback_component', |
458 'components.gyp:storage_monitor', | 459 'components.gyp:storage_monitor', |
459 'components.gyp:storage_monitor_test_support', | 460 'components.gyp:storage_monitor_test_support', |
460 'components.gyp:usb_service', | 461 'components.gyp:usb_service', |
461 'components.gyp:web_modal', | 462 'components.gyp:web_modal', |
462 'components.gyp:web_modal_test_support', | 463 'components.gyp:web_modal_test_support', |
463 '../third_party/libusb/libusb.gyp:libusb', | 464 '../third_party/libusb/libusb.gyp:libusb', |
464 ], | 465 ], |
465 }], | 466 }], |
| 467 ['OS != "android"', { |
| 468 'sources': [ |
| 469 'invalidation/fake_invalidator_unittest.cc', |
| 470 'invalidation/gcm_network_channel_unittest.cc', |
| 471 'invalidation/invalidation_notifier_unittest.cc', |
| 472 'invalidation/invalidator_registrar_unittest.cc', |
| 473 'invalidation/non_blocking_invalidator_unittest.cc', |
| 474 'invalidation/p2p_invalidator_unittest.cc', |
| 475 'invalidation/push_client_channel_unittest.cc', |
| 476 'invalidation/sync_invalidation_listener_unittest.cc', |
| 477 'invalidation/sync_system_resources_unittest.cc', |
| 478 ], |
| 479 }], |
466 ['chromeos==1', { | 480 ['chromeos==1', { |
467 'sources': [ | 481 'sources': [ |
468 'metrics/chromeos/serialization_utils_unittest.cc', | 482 'metrics/chromeos/serialization_utils_unittest.cc', |
469 ], | 483 ], |
470 'sources!': [ | 484 'sources!': [ |
471 'storage_monitor/storage_monitor_linux_unittest.cc', | 485 'storage_monitor/storage_monitor_linux_unittest.cc', |
472 ], | 486 ], |
473 'dependencies': [ | 487 'dependencies': [ |
474 '../chromeos/chromeos.gyp:chromeos_test_support', | 488 '../chromeos/chromeos.gyp:chromeos_test_support', |
475 'components.gyp:metrics_chromeos', | 489 'components.gyp:metrics_chromeos', |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 'dependencies': [ | 746 'dependencies': [ |
733 '../base/allocator/allocator.gyp:allocator', | 747 '../base/allocator/allocator.gyp:allocator', |
734 ], | 748 ], |
735 }], | 749 }], |
736 ], | 750 ], |
737 }, | 751 }, |
738 ], | 752 ], |
739 }], | 753 }], |
740 ], | 754 ], |
741 } | 755 } |
OLD | NEW |