| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 'debug/debugger_unittest.cc', | 465 'debug/debugger_unittest.cc', |
| 466 'debug/leak_tracker_unittest.cc', | 466 'debug/leak_tracker_unittest.cc', |
| 467 'debug/proc_maps_linux_unittest.cc', | 467 'debug/proc_maps_linux_unittest.cc', |
| 468 'debug/stack_trace_unittest.cc', | 468 'debug/stack_trace_unittest.cc', |
| 469 'debug/task_annotator_unittest.cc', | 469 'debug/task_annotator_unittest.cc', |
| 470 'deferred_sequenced_task_runner_unittest.cc', | 470 'deferred_sequenced_task_runner_unittest.cc', |
| 471 'environment_unittest.cc', | 471 'environment_unittest.cc', |
| 472 'feature_list_unittest.cc', | 472 'feature_list_unittest.cc', |
| 473 'file_version_info_unittest.cc', | 473 'file_version_info_unittest.cc', |
| 474 'files/dir_reader_posix_unittest.cc', | 474 'files/dir_reader_posix_unittest.cc', |
| 475 'files/file_locking_unittest.cc', |
| 475 'files/file_path_unittest.cc', | 476 'files/file_path_unittest.cc', |
| 476 'files/file_path_watcher_unittest.cc', | 477 'files/file_path_watcher_unittest.cc', |
| 477 'files/file_proxy_unittest.cc', | 478 'files/file_proxy_unittest.cc', |
| 478 'files/file_unittest.cc', | 479 'files/file_unittest.cc', |
| 479 'files/file_util_proxy_unittest.cc', | 480 'files/file_util_proxy_unittest.cc', |
| 480 'files/file_util_unittest.cc', | 481 'files/file_util_unittest.cc', |
| 481 'files/important_file_writer_unittest.cc', | 482 'files/important_file_writer_unittest.cc', |
| 482 'files/memory_mapped_file_unittest.cc', | 483 'files/memory_mapped_file_unittest.cc', |
| 483 'files/scoped_temp_dir_unittest.cc', | 484 'files/scoped_temp_dir_unittest.cc', |
| 484 'gmock_unittest.cc', | 485 'gmock_unittest.cc', |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 }, | 693 }, |
| 693 'conditions': [ | 694 'conditions': [ |
| 694 ['OS == "android"', { | 695 ['OS == "android"', { |
| 695 'dependencies': [ | 696 'dependencies': [ |
| 696 'android/jni_generator/jni_generator.gyp:jni_generator_tests', | 697 'android/jni_generator/jni_generator.gyp:jni_generator_tests', |
| 697 '../testing/android/native_test.gyp:native_test_native_code', | 698 '../testing/android/native_test.gyp:native_test_native_code', |
| 698 ], | 699 ], |
| 699 }], | 700 }], |
| 700 ['OS == "ios" and _toolset != "host"', { | 701 ['OS == "ios" and _toolset != "host"', { |
| 701 'sources/': [ | 702 'sources/': [ |
| 703 # This test needs multiple processes. |
| 704 ['exclude', '^files/file_locking_unittest\\.cc$'], |
| 702 # iOS does not support FilePathWatcher. | 705 # iOS does not support FilePathWatcher. |
| 703 ['exclude', '^files/file_path_watcher_unittest\\.cc$'], | 706 ['exclude', '^files/file_path_watcher_unittest\\.cc$'], |
| 704 # Only test the iOS-meaningful portion of memory and process_utils. | 707 # Only test the iOS-meaningful portion of memory and process_utils. |
| 705 ['exclude', '^memory/discardable_shared_memory_unittest\\.cc$'], | 708 ['exclude', '^memory/discardable_shared_memory_unittest\\.cc$'], |
| 706 ['exclude', '^memory/shared_memory_unittest\\.cc$'], | 709 ['exclude', '^memory/shared_memory_unittest\\.cc$'], |
| 707 ['exclude', '^process/memory_unittest'], | 710 ['exclude', '^process/memory_unittest'], |
| 708 ['exclude', '^process/process_unittest\\.cc$'], | 711 ['exclude', '^process/process_unittest\\.cc$'], |
| 709 ['exclude', '^process/process_util_unittest\\.cc$'], | 712 ['exclude', '^process/process_util_unittest\\.cc$'], |
| 710 ['include', '^process/process_util_unittest_ios\\.cc$'], | 713 ['include', '^process/process_util_unittest_ios\\.cc$'], |
| 711 # iOS does not use message_pump_libevent. | 714 # iOS does not use message_pump_libevent. |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1716 '../build/isolate.gypi', | 1719 '../build/isolate.gypi', |
| 1717 ], | 1720 ], |
| 1718 'sources': [ | 1721 'sources': [ |
| 1719 'base_unittests.isolate', | 1722 'base_unittests.isolate', |
| 1720 ], | 1723 ], |
| 1721 }, | 1724 }, |
| 1722 ], | 1725 ], |
| 1723 }], | 1726 }], |
| 1724 ], | 1727 ], |
| 1725 } | 1728 } |
| OLD | NEW |