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

Side by Side Diff: base/allocator/allocator.gyp

Issue 12303010: fixes to libcmt stripper to correctly strip x64 objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes to prep_libc to supply target_arch on command line instead of via output directory Created 7 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/allocator/prep_libc.py » ('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 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 'use_vtable_verify%': 0, 9 'use_vtable_verify%': 0,
10 }, 10 },
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 'prep_libc.py', 514 'prep_libc.py',
515 ], 515 ],
516 'outputs': [ 516 'outputs': [
517 '<(SHARED_INTERMEDIATE_DIR)/allocator/libcmt.lib', 517 '<(SHARED_INTERMEDIATE_DIR)/allocator/libcmt.lib',
518 ], 518 ],
519 'action': [ 519 'action': [
520 'python', 520 'python',
521 'prep_libc.py', 521 'prep_libc.py',
522 '$(VCInstallDir)lib', 522 '$(VCInstallDir)lib',
523 '<(SHARED_INTERMEDIATE_DIR)/allocator', 523 '<(SHARED_INTERMEDIATE_DIR)/allocator',
524 '<(target_arch)',
524 ], 525 ],
525 }, 526 },
526 ], 527 ],
527 }, 528 },
528 { 529 {
529 'target_name': 'allocator_unittests', 530 'target_name': 'allocator_unittests',
530 'type': 'executable', 531 'type': 'executable',
531 'dependencies': [ 532 'dependencies': [
532 'allocator', 533 'allocator',
533 'allocator_extension_thunks', 534 'allocator_extension_thunks',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 'sources': [ 668 'sources': [
668 'type_profiler_map_unittests.cc', 669 'type_profiler_map_unittests.cc',
669 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', 670 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h',
670 '<(tcmalloc_dir)/src/type_profiler_map.cc', 671 '<(tcmalloc_dir)/src/type_profiler_map.cc',
671 ], 672 ],
672 }, 673 },
673 ], 674 ],
674 }], 675 }],
675 ], 676 ],
676 } 677 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/prep_libc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698