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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 'components.gyp:web_modal_test_support', | 403 'components.gyp:web_modal_test_support', |
404 '../third_party/libusb/libusb.gyp:libusb', | 404 '../third_party/libusb/libusb.gyp:libusb', |
405 ], | 405 ], |
406 }], | 406 }], |
407 ['OS == "android" and gtest_target_type == "shared_library"', { | 407 ['OS == "android" and gtest_target_type == "shared_library"', { |
408 'dependencies': [ | 408 'dependencies': [ |
409 '../testing/android/native_test.gyp:native_test_native_code', | 409 '../testing/android/native_test.gyp:native_test_native_code', |
410 ] | 410 ] |
411 }], | 411 }], |
412 ['chromeos==1', { | 412 ['chromeos==1', { |
| 413 'sources': [ |
| 414 'metrics/export/metrics_utils_unittest.cc', |
| 415 ], |
413 'sources!': [ | 416 'sources!': [ |
414 'storage_monitor/storage_monitor_linux_unittest.cc', | 417 'storage_monitor/storage_monitor_linux_unittest.cc', |
415 ], | 418 ], |
416 'dependencies': [ | 419 'dependencies': [ |
417 '../chromeos/chromeos.gyp:chromeos_test_support', | 420 '../chromeos/chromeos.gyp:chromeos_test_support', |
| 421 'components.gyp:metrics_export', |
418 ], | 422 ], |
419 }], | 423 }], |
420 ['OS=="linux"', { | 424 ['OS=="linux"', { |
421 'dependencies': [ | 425 'dependencies': [ |
422 '../dbus/dbus.gyp:dbus', | 426 '../dbus/dbus.gyp:dbus', |
423 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', | 427 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', |
424 ], | 428 ], |
425 }], | 429 }], |
426 ['OS=="win" and win_use_allocator_shim==1', { | 430 ['OS=="win" and win_use_allocator_shim==1', { |
427 'dependencies': [ | 431 'dependencies': [ |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 'dependencies': [ | 680 'dependencies': [ |
677 '../base/allocator/allocator.gyp:allocator', | 681 '../base/allocator/allocator.gyp:allocator', |
678 ], | 682 ], |
679 }], | 683 }], |
680 ], | 684 ], |
681 }, | 685 }, |
682 ], | 686 ], |
683 }], | 687 }], |
684 ], | 688 ], |
685 } | 689 } |
OLD | NEW |