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

Side by Side Diff: base/base.gypi

Issue 10239012: Route calls to tcmalloc MallocExtension through allocator agnostic interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: separate allocator_extension into own static library, add comments to allocator_extension.h Created 8 years, 8 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 'target_name': 'base', 582 'target_name': 'base',
583 'type': '<(component)', 583 'type': '<(component)',
584 'toolsets': ['host', 'target'], 584 'toolsets': ['host', 'target'],
585 'variables': { 585 'variables': {
586 'base_target': 1, 586 'base_target': 1,
587 'enable_wexit_time_destructors': 1, 587 'enable_wexit_time_destructors': 1,
588 'optimize': 'max', 588 'optimize': 'max',
589 }, 589 },
590 'dependencies': [ 590 'dependencies': [
591 'base_static', 591 'base_static',
592 'allocator/allocator.gyp:allocator_extension',
592 '../testing/gtest.gyp:gtest_prod', 593 '../testing/gtest.gyp:gtest_prod',
593 '../third_party/modp_b64/modp_b64.gyp:modp_b64', 594 '../third_party/modp_b64/modp_b64.gyp:modp_b64',
594 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 595 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
595 ], 596 ],
596 # TODO(gregoryd): direct_dependent_settings should be shared with the 597 # TODO(gregoryd): direct_dependent_settings should be shared with the
597 # 64-bit target, but it doesn't work due to a bug in gyp 598 # 64-bit target, but it doesn't work due to a bug in gyp
598 'direct_dependent_settings': { 599 'direct_dependent_settings': {
599 'include_dirs': [ 600 'include_dirs': [
600 '..', 601 '..',
601 ], 602 ],
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 'third_party/xdg_mime/xdgmimemagic.c', 925 'third_party/xdg_mime/xdgmimemagic.c',
925 'third_party/xdg_mime/xdgmimemagic.h', 926 'third_party/xdg_mime/xdgmimemagic.h',
926 'third_party/xdg_mime/xdgmimeparent.c', 927 'third_party/xdg_mime/xdgmimeparent.c',
927 'third_party/xdg_mime/xdgmimeparent.h', 928 'third_party/xdg_mime/xdgmimeparent.h',
928 ], 929 ],
929 }, 930 },
930 ], 931 ],
931 }], 932 }],
932 ], 933 ],
933 } 934 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698