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

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

Issue 138433004: Normalize _unittest.cc filename suffix for unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resync to trunk for mojo conflicts Created 6 years, 11 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 | Annotate | Revision Log
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 'allocator_extension_thunks', 506 'allocator_extension_thunks',
507 '../../testing/gtest.gyp:gtest', 507 '../../testing/gtest.gyp:gtest',
508 ], 508 ],
509 'include_dirs': [ 509 'include_dirs': [
510 '.', 510 '.',
511 '<(tcmalloc_dir)/src/base', 511 '<(tcmalloc_dir)/src/base',
512 '<(tcmalloc_dir)/src', 512 '<(tcmalloc_dir)/src',
513 '../..', 513 '../..',
514 ], 514 ],
515 'sources': [ 515 'sources': [
516 'allocator_unittests.cc', 516 'allocator_unittest.cc',
517 '../profiler/alternate_timer.cc', 517 '../profiler/alternate_timer.cc',
518 '../profiler/alternate_timer.h', 518 '../profiler/alternate_timer.h',
519 ], 519 ],
520 }, 520 },
521 { 521 {
522 'target_name': 'tcmalloc_unittest', 522 'target_name': 'tcmalloc_unittest',
523 'type': 'executable', 523 'type': 'executable',
524 'sources': [ 524 'sources': [
525 'tcmalloc_unittest.cc', 525 'tcmalloc_unittest.cc',
526 ], 526 ],
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 '../base.gyp:base', 609 '../base.gyp:base',
610 'allocator', 610 'allocator',
611 'type_profiler_tcmalloc', 611 'type_profiler_tcmalloc',
612 ], 612 ],
613 'include_dirs': [ 613 'include_dirs': [
614 '../..', 614 '../..',
615 ], 615 ],
616 'sources': [ 616 'sources': [
617 'type_profiler_control.cc', 617 'type_profiler_control.cc',
618 'type_profiler_control.h', 618 'type_profiler_control.h',
619 'type_profiler_unittests.cc', 619 'type_profiler_unittest.cc',
620 ], 620 ],
621 }, 621 },
622 { 622 {
623 'target_name': 'type_profiler_map_unittests', 623 'target_name': 'type_profiler_map_unittests',
624 'type': 'executable', 624 'type': 'executable',
625 'dependencies': [ 625 'dependencies': [
626 '../../testing/gtest.gyp:gtest', 626 '../../testing/gtest.gyp:gtest',
627 '../base.gyp:base', 627 '../base.gyp:base',
628 'allocator', 628 'allocator',
629 ], 629 ],
630 'dependencies!': [ 630 'dependencies!': [
631 'type_profiler', 631 'type_profiler',
632 ], 632 ],
633 'cflags_cc!': [ 633 'cflags_cc!': [
634 '-fintercept-allocation-functions', 634 '-fintercept-allocation-functions',
635 ], 635 ],
636 'include_dirs': [ 636 'include_dirs': [
637 '<(tcmalloc_dir)/src', 637 '<(tcmalloc_dir)/src',
638 '../..', 638 '../..',
639 ], 639 ],
640 'sources': [ 640 'sources': [
641 'type_profiler_map_unittests.cc', 641 'type_profiler_map_unittest.cc',
642 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', 642 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h',
643 '<(tcmalloc_dir)/src/type_profiler_map.cc', 643 '<(tcmalloc_dir)/src/type_profiler_map.cc',
644 ], 644 ],
645 }, 645 },
646 ], 646 ],
647 }], 647 }],
648 ], 648 ],
649 } 649 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698