Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: base/base.gyp

Issue 1779333003: Add test for multithreaded ActiveVerifier behavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@handlecreate
Patch Set: change to loadable_module Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/base_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 }], 692 }],
693 [ 'OS == "win" and target_arch == "x64"', { 693 [ 'OS == "win" and target_arch == "x64"', {
694 'sources': [ 694 'sources': [
695 'profiler/win32_stack_frame_unwinder_unittest.cc', 695 'profiler/win32_stack_frame_unwinder_unittest.cc',
696 ], 696 ],
697 'dependencies': [ 697 'dependencies': [
698 'base_profiler_test_support_library', 698 'base_profiler_test_support_library',
699 ], 699 ],
700 }], 700 }],
701 ['OS == "win"', { 701 ['OS == "win"', {
702 'dependencies': [
703 'scoped_handle_test_dll'
704 ],
702 'sources!': [ 705 'sources!': [
703 'file_descriptor_shuffle_unittest.cc', 706 'file_descriptor_shuffle_unittest.cc',
704 'files/dir_reader_posix_unittest.cc', 707 'files/dir_reader_posix_unittest.cc',
705 'message_loop/message_pump_libevent_unittest.cc', 708 'message_loop/message_pump_libevent_unittest.cc',
706 'threading/worker_pool_posix_unittest.cc', 709 'threading/worker_pool_posix_unittest.cc',
707 ], 710 ],
708 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 711 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
709 'msvs_disabled_warnings': [ 712 'msvs_disabled_warnings': [
710 4267, 713 4267,
711 ], 714 ],
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 'cfgmgr32.dll', 1676 'cfgmgr32.dll',
1674 'shell32.dll', 1677 'shell32.dll',
1675 ], 1678 ],
1676 'AdditionalDependencies': [ 1679 'AdditionalDependencies': [
1677 'cfgmgr32.lib', 1680 'cfgmgr32.lib',
1678 'shell32.lib', 1681 'shell32.lib',
1679 ], 1682 ],
1680 }, 1683 },
1681 }, 1684 },
1682 }, 1685 },
1686 {
1687 'target_name': 'scoped_handle_test_dll',
1688 'type': 'loadable_module',
1689 'dependencies': [
1690 'base',
1691 ],
1692 'sources': [
1693 'win/scoped_handle_test_dll.cc',
1694 ],
1695 },
1683 ], 1696 ],
1684 }], 1697 }],
1685 ['test_isolation_mode != "noop"', { 1698 ['test_isolation_mode != "noop"', {
1686 'targets': [ 1699 'targets': [
1687 { 1700 {
1688 'target_name': 'base_unittests_run', 1701 'target_name': 'base_unittests_run',
1689 'type': 'none', 1702 'type': 'none',
1690 'dependencies': [ 1703 'dependencies': [
1691 'base_unittests', 1704 'base_unittests',
1692 ], 1705 ],
1693 'includes': [ 1706 'includes': [
1694 '../build/isolate.gypi', 1707 '../build/isolate.gypi',
1695 ], 1708 ],
1696 'sources': [ 1709 'sources': [
1697 'base_unittests.isolate', 1710 'base_unittests.isolate',
1698 ], 1711 ],
1699 }, 1712 },
1700 ], 1713 ],
1701 }], 1714 }],
1702 ], 1715 ],
1703 } 1716 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/base_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698