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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 '-fintercept-allocation-functions', | 588 '-fintercept-allocation-functions', |
589 ], | 589 ], |
590 'include_dirs': [ | 590 'include_dirs': [ |
591 '../..', | 591 '../..', |
592 ], | 592 ], |
593 'sources': [ | 593 'sources': [ |
594 'type_profiler.cc', | 594 'type_profiler.cc', |
595 'type_profiler.h', | 595 'type_profiler.h', |
596 'type_profiler_control.h', | 596 'type_profiler_control.h', |
597 ], | 597 ], |
| 598 'toolsets': ['host', 'target'], |
598 }, | 599 }, |
599 { | 600 { |
600 'target_name': 'type_profiler_tcmalloc', | 601 'target_name': 'type_profiler_tcmalloc', |
601 'type': 'static_library', | 602 'type': 'static_library', |
602 'dependencies!': [ | 603 'dependencies!': [ |
603 'type_profiler', | 604 'type_profiler', |
604 ], | 605 ], |
605 'cflags_cc!': [ | 606 'cflags_cc!': [ |
606 '-fintercept-allocation-functions', | 607 '-fintercept-allocation-functions', |
607 ], | 608 ], |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 'sources': [ | 656 'sources': [ |
656 'type_profiler_map_unittests.cc', | 657 'type_profiler_map_unittests.cc', |
657 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', | 658 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', |
658 '<(tcmalloc_dir)/src/type_profiler_map.cc', | 659 '<(tcmalloc_dir)/src/type_profiler_map.cc', |
659 ], | 660 ], |
660 }, | 661 }, |
661 ], | 662 ], |
662 }], | 663 }], |
663 ], | 664 ], |
664 } | 665 } |
OLD | NEW |