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

Unified Diff: base/allocator/allocator.gyp

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/allocator/allocator_extension.h » ('j') | base/allocator/allocator_extension.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/allocator/allocator.gyp
diff --git a/base/allocator/allocator.gyp b/base/allocator/allocator.gyp
index ee07ecc451917c4aa088db39dc148cef77a51efb..63618a26058d99afd9ff7072ce42f9976507aa30 100644
--- a/base/allocator/allocator.gyp
+++ b/base/allocator/allocator.gyp
@@ -427,6 +427,17 @@
}],
],
},
+ {
+ 'target_name': 'allocator_extension',
+ 'type': 'static_library',
+ 'sources': [
+ 'allocator_extension.cc',
jam 2012/04/26 21:28:20 nit: 2 space tabbing..
+ 'allocator_extension.h',
+ ],
+ 'include_dirs': [
+ '../../'
+ ],
+ },
],
'conditions': [
['OS=="win"', {
@@ -456,6 +467,7 @@
'type': 'executable',
'dependencies': [
'allocator',
+ 'allocator_extension',
'../../testing/gtest.gyp:gtest',
],
'include_dirs': [
« no previous file with comments | « no previous file | base/allocator/allocator_extension.h » ('j') | base/allocator/allocator_extension.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698