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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 'prefs/default_pref_store_unittest.cc', | 549 'prefs/default_pref_store_unittest.cc', |
550 'prefs/json_pref_store_unittest.cc', | 550 'prefs/json_pref_store_unittest.cc', |
551 'prefs/mock_pref_change_callback.h', | 551 'prefs/mock_pref_change_callback.h', |
552 'prefs/overlay_user_pref_store_unittest.cc', | 552 'prefs/overlay_user_pref_store_unittest.cc', |
553 'prefs/pref_change_registrar_unittest.cc', | 553 'prefs/pref_change_registrar_unittest.cc', |
554 'prefs/pref_member_unittest.cc', | 554 'prefs/pref_member_unittest.cc', |
555 'prefs/pref_notifier_impl_unittest.cc', | 555 'prefs/pref_notifier_impl_unittest.cc', |
556 'prefs/pref_service_unittest.cc', | 556 'prefs/pref_service_unittest.cc', |
557 'prefs/pref_value_map_unittest.cc', | 557 'prefs/pref_value_map_unittest.cc', |
558 'prefs/pref_value_store_unittest.cc', | 558 'prefs/pref_value_store_unittest.cc', |
559 'process_util_unittest.cc', | |
560 'process_util_unittest_ios.cc', | |
561 'process/memory_unittest.cc', | 559 'process/memory_unittest.cc', |
562 'process/memory_unittest_mac.h', | 560 'process/memory_unittest_mac.h', |
563 'process/memory_unittest_mac.mm', | 561 'process/memory_unittest_mac.mm', |
| 562 'process/process_util_unittest.cc', |
| 563 'process/process_util_unittest_ios.cc', |
564 'profiler/tracked_time_unittest.cc', | 564 'profiler/tracked_time_unittest.cc', |
565 'rand_util_unittest.cc', | 565 'rand_util_unittest.cc', |
566 'safe_numerics_unittest.cc', | 566 'safe_numerics_unittest.cc', |
567 'safe_numerics_unittest.nc', | 567 'safe_numerics_unittest.nc', |
568 'scoped_clear_errno_unittest.cc', | 568 'scoped_clear_errno_unittest.cc', |
569 'scoped_native_library_unittest.cc', | 569 'scoped_native_library_unittest.cc', |
570 'scoped_observer.h', | 570 'scoped_observer.h', |
571 'security_unittest.cc', | 571 'security_unittest.cc', |
572 'sequence_checker_unittest.cc', | 572 'sequence_checker_unittest.cc', |
573 'sha1_unittest.cc', | 573 'sha1_unittest.cc', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 ['gtest_target_type == "shared_library"', { | 676 ['gtest_target_type == "shared_library"', { |
677 'dependencies': [ | 677 'dependencies': [ |
678 '../testing/android/native_test.gyp:native_test_native_code', | 678 '../testing/android/native_test.gyp:native_test_native_code', |
679 ], | 679 ], |
680 }], | 680 }], |
681 ], | 681 ], |
682 }], | 682 }], |
683 ['OS == "ios" and _toolset != "host"', { | 683 ['OS == "ios" and _toolset != "host"', { |
684 'sources/': [ | 684 'sources/': [ |
685 # Only test the iOS-meaningful portion of process_utils. | 685 # Only test the iOS-meaningful portion of process_utils. |
686 ['exclude', '^process_util_unittest\\.cc$'], | |
687 ['exclude', '^process/memory_unittest'], | 686 ['exclude', '^process/memory_unittest'], |
688 ['include', '^process_util_unittest_ios\\.cc$'], | 687 ['exclude', '^process/process_util_unittest\\.cc$'], |
| 688 ['include', '^process/process_util_unittest_ios\\.cc$'], |
689 # Requires spawning processes. | 689 # Requires spawning processes. |
690 ['exclude', '^metrics/stats_table_unittest\\.cc$'], | 690 ['exclude', '^metrics/stats_table_unittest\\.cc$'], |
691 # iOS does not use message_pump_libevent. | 691 # iOS does not use message_pump_libevent. |
692 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'], | 692 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'], |
693 ], | 693 ], |
694 'conditions': [ | 694 'conditions': [ |
695 ['coverage != 0', { | 695 ['coverage != 0', { |
696 'sources!': [ | 696 'sources!': [ |
697 # These sources can't be built with coverage due to a toolchain | 697 # These sources can't be built with coverage due to a toolchain |
698 # bug: http://openradar.appspot.com/radar?id=1499403 | 698 # bug: http://openradar.appspot.com/radar?id=1499403 |
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1302 'base_unittests.isolate', | 1302 'base_unittests.isolate', |
1303 ], | 1303 ], |
1304 'sources': [ | 1304 'sources': [ |
1305 'base_unittests.isolate', | 1305 'base_unittests.isolate', |
1306 ], | 1306 ], |
1307 }, | 1307 }, |
1308 ], | 1308 ], |
1309 }], | 1309 }], |
1310 ], | 1310 ], |
1311 } | 1311 } |
OLD | NEW |