| 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 'components.gyp:web_modal_test_support', | 425 'components.gyp:web_modal_test_support', |
| 426 '../third_party/libusb/libusb.gyp:libusb', | 426 '../third_party/libusb/libusb.gyp:libusb', |
| 427 ], | 427 ], |
| 428 }], | 428 }], |
| 429 ['OS == "android" and gtest_target_type == "shared_library"', { | 429 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 430 'dependencies': [ | 430 'dependencies': [ |
| 431 '../testing/android/native_test.gyp:native_test_native_code', | 431 '../testing/android/native_test.gyp:native_test_native_code', |
| 432 ] | 432 ] |
| 433 }], | 433 }], |
| 434 ['chromeos==1', { | 434 ['chromeos==1', { |
| 435 'sources': [ |
| 436 'metrics/chromeos/metrics_utils_unittest.cc', |
| 437 ], |
| 435 'sources!': [ | 438 'sources!': [ |
| 436 'storage_monitor/storage_monitor_linux_unittest.cc', | 439 'storage_monitor/storage_monitor_linux_unittest.cc', |
| 437 ], | 440 ], |
| 438 'dependencies': [ | 441 'dependencies': [ |
| 439 '../chromeos/chromeos.gyp:chromeos_test_support', | 442 '../chromeos/chromeos.gyp:chromeos_test_support', |
| 443 'components.gyp:metrics_export', |
| 440 ], | 444 ], |
| 441 }], | 445 }], |
| 442 ['OS=="linux"', { | 446 ['OS=="linux"', { |
| 443 'dependencies': [ | 447 'dependencies': [ |
| 444 '../dbus/dbus.gyp:dbus', | 448 '../dbus/dbus.gyp:dbus', |
| 445 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', | 449 '../device/media_transfer_protocol/media_transfer_protocol.gyp:d
evice_media_transfer_protocol', |
| 446 ], | 450 ], |
| 447 }], | 451 }], |
| 448 ['OS=="win" and win_use_allocator_shim==1', { | 452 ['OS=="win" and win_use_allocator_shim==1', { |
| 449 'dependencies': [ | 453 'dependencies': [ |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'dependencies': [ | 700 'dependencies': [ |
| 697 '../base/allocator/allocator.gyp:allocator', | 701 '../base/allocator/allocator.gyp:allocator', |
| 698 ], | 702 ], |
| 699 }], | 703 }], |
| 700 ], | 704 ], |
| 701 }, | 705 }, |
| 702 ], | 706 ], |
| 703 }], | 707 }], |
| 704 ], | 708 ], |
| 705 } | 709 } |
| OLD | NEW |