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

Side by Side Diff: base/base.gyp

Issue 954003002: Revert of xp: copy dbghelp.dll to output dir and have base.isolate use it there (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | base/base.isolate » ('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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 'sources!': [ 766 'sources!': [
767 'file_descriptor_shuffle_unittest.cc', 767 'file_descriptor_shuffle_unittest.cc',
768 'files/dir_reader_posix_unittest.cc', 768 'files/dir_reader_posix_unittest.cc',
769 'message_loop/message_pump_libevent_unittest.cc', 769 'message_loop/message_pump_libevent_unittest.cc',
770 'threading/worker_pool_posix_unittest.cc', 770 'threading/worker_pool_posix_unittest.cc',
771 ], 771 ],
772 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 772 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
773 'msvs_disabled_warnings': [ 773 'msvs_disabled_warnings': [
774 4267, 774 4267,
775 ], 775 ],
776 'copies': [
777 {
778 'destination': '<(PRODUCT_DIR)/',
779 'files': [
780 '../build/win/dbghelp_xp/dbghelp.dll',
781 ],
782 },
783 ],
784 'conditions': [ 776 'conditions': [
785 # This is needed so base_unittests uses the allocator shim, as 777 # This is needed so base_unittests uses the allocator shim, as
786 # SecurityTest.MemoryAllocationRestriction* tests are dependent 778 # SecurityTest.MemoryAllocationRestriction* tests are dependent
787 # on tcmalloc. 779 # on tcmalloc.
788 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into 780 # TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
789 # their own test suite. 781 # their own test suite.
790 ['win_use_allocator_shim==1', { 782 ['win_use_allocator_shim==1', {
791 'dependencies': [ 783 'dependencies': [
792 'allocator/allocator.gyp:allocator', 784 'allocator/allocator.gyp:allocator',
793 ], 785 ],
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 'dependencies': [ 1559 'dependencies': [
1568 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1560 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1569 ], 1561 ],
1570 }], 1562 }],
1571 ], 1563 ],
1572 }, 1564 },
1573 ], 1565 ],
1574 }], 1566 }],
1575 ], 1567 ],
1576 } 1568 }
OLDNEW
« no previous file with comments | « no previous file | base/base.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698