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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
408 ], | 408 ], |
409 'dependencies!': [ | 409 'dependencies!': [ |
410 'components.gyp:storage_monitor', | 410 'components.gyp:storage_monitor', |
411 'components.gyp:storage_monitor_test_support', | 411 'components.gyp:storage_monitor_test_support', |
412 'components.gyp:usb_service', | 412 'components.gyp:usb_service', |
413 'components.gyp:web_modal', | 413 'components.gyp:web_modal', |
414 'components.gyp:web_modal_test_support', | 414 'components.gyp:web_modal_test_support', |
415 '../third_party/libusb/libusb.gyp:libusb', | 415 '../third_party/libusb/libusb.gyp:libusb', |
416 ], | 416 ], |
417 }], | 417 }], |
418 ['OS == "android"', { | |
419 'sources': [ | |
420 'bookmarks_enhanced/image_store_unittest.cc', | |
tfarina
2014/05/08 15:41:08
I think we keep tests grouped in the main sources
Kibeom Kim (inactive)
2014/05/08 17:56:33
Done. (I wasn't sure that running tests on other p
| |
421 'bookmarks_enhanced/memory_image_store.cc', | |
tfarina
2014/05/08 15:41:08
is memory_image_store.* test code only?
Kibeom Kim (inactive)
2014/05/08 17:56:33
Yes, just renamed to TestImageStore.
| |
422 'bookmarks_enhanced/memory_image_store.h', | |
423 ], | |
424 'dependencies': [ | |
425 'components.gyp:bookmarks_enhanced', | |
426 ], | |
427 }], | |
418 ['OS == "android" and gtest_target_type == "shared_library"', { | 428 ['OS == "android" and gtest_target_type == "shared_library"', { |
419 'dependencies': [ | 429 'dependencies': [ |
420 '../testing/android/native_test.gyp:native_test_native_code', | 430 '../testing/android/native_test.gyp:native_test_native_code', |
421 ] | 431 ] |
422 }], | 432 }], |
423 ['chromeos==1', { | 433 ['chromeos==1', { |
424 'sources!': [ | 434 'sources!': [ |
425 'storage_monitor/storage_monitor_linux_unittest.cc', | 435 'storage_monitor/storage_monitor_linux_unittest.cc', |
426 ], | 436 ], |
427 'dependencies': [ | 437 'dependencies': [ |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
687 'dependencies': [ | 697 'dependencies': [ |
688 '../base/allocator/allocator.gyp:allocator', | 698 '../base/allocator/allocator.gyp:allocator', |
689 ], | 699 ], |
690 }], | 700 }], |
691 ], | 701 ], |
692 }, | 702 }, |
693 ], | 703 ], |
694 }], | 704 }], |
695 ], | 705 ], |
696 } | 706 } |
OLD | NEW |