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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 'components.gyp:web_modal_test_support', | 434 'components.gyp:web_modal_test_support', |
435 '../third_party/libusb/libusb.gyp:libusb', | 435 '../third_party/libusb/libusb.gyp:libusb', |
436 ], | 436 ], |
437 }], | 437 }], |
438 ['OS == "android" and gtest_target_type == "shared_library"', { | 438 ['OS == "android" and gtest_target_type == "shared_library"', { |
439 'dependencies': [ | 439 'dependencies': [ |
440 '../testing/android/native_test.gyp:native_test_native_code', | 440 '../testing/android/native_test.gyp:native_test_native_code', |
441 ] | 441 ] |
442 }], | 442 }], |
443 ['chromeos==1', { | 443 ['chromeos==1', { |
| 444 'sources': [ |
| 445 'metrics/chromeos/metrics_utils_unittest.cc', |
| 446 ], |
444 'sources!': [ | 447 'sources!': [ |
445 'storage_monitor/storage_monitor_linux_unittest.cc', | 448 'storage_monitor/storage_monitor_linux_unittest.cc', |
446 ], | 449 ], |
447 'dependencies': [ | 450 'dependencies': [ |
448 '../chromeos/chromeos.gyp:chromeos_test_support', | 451 '../chromeos/chromeos.gyp:chromeos_test_support', |
| 452 'components.gyp:metrics_chromeos', |
449 ], | 453 ], |
450 }], | 454 }], |
451 ['OS=="linux"', { | 455 ['OS=="linux"', { |
452 'dependencies': [ | 456 'dependencies': [ |
453 '../dbus/dbus.gyp:dbus', | 457 '../dbus/dbus.gyp:dbus', |
454 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', | 458 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', |
455 ], | 459 ], |
456 }], | 460 }], |
457 ['OS=="win" and win_use_allocator_shim==1', { | 461 ['OS=="win" and win_use_allocator_shim==1', { |
458 'dependencies': [ | 462 'dependencies': [ |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 'dependencies': [ | 709 'dependencies': [ |
706 '../base/allocator/allocator.gyp:allocator', | 710 '../base/allocator/allocator.gyp:allocator', |
707 ], | 711 ], |
708 }], | 712 }], |
709 ], | 713 ], |
710 }, | 714 }, |
711 ], | 715 ], |
712 }], | 716 }], |
713 ], | 717 ], |
714 } | 718 } |
OLD | NEW |