| 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 '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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |