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