| Index: base/allocator/allocator.gyp
|
| diff --git a/base/allocator/allocator.gyp b/base/allocator/allocator.gyp
|
| index ee07ecc451917c4aa088db39dc148cef77a51efb..afccdac3b9abe220c40ce784783d15ee88369079 100644
|
| --- a/base/allocator/allocator.gyp
|
| +++ b/base/allocator/allocator.gyp
|
| @@ -427,7 +427,19 @@
|
| }],
|
| ],
|
| },
|
| + {
|
| + 'target_name': 'allocator_extension_thunks',
|
| + 'type': 'static_library',
|
| + 'sources': [
|
| + 'allocator_extension_thunks.cc',
|
| + 'allocator_extension_thunks.h',
|
| ],
|
| + 'toolsets': ['host', 'target'],
|
| + 'include_dirs': [
|
| + '../../'
|
| + ],
|
| + },
|
| + ],
|
| 'conditions': [
|
| ['OS=="win"', {
|
| 'targets': [
|
| @@ -456,6 +468,7 @@
|
| 'type': 'executable',
|
| 'dependencies': [
|
| 'allocator',
|
| + 'allocator_extension_thunks',
|
| '../../testing/gtest.gyp:gtest',
|
| ],
|
| 'include_dirs': [
|
| @@ -470,6 +483,23 @@
|
| '../profiler/alternate_timer.h',
|
| ],
|
| },
|
| + {
|
| + 'target_name': 'allocator_extension_thunks_win64',
|
| + 'type': 'static_library',
|
| + 'sources': [
|
| + 'allocator_extension_thunks.cc',
|
| + 'allocator_extension_thunks.h',
|
| + ],
|
| + 'toolsets': ['host', 'target'],
|
| + 'include_dirs': [
|
| + '../../'
|
| + ],
|
| + 'configurations': {
|
| + 'Common_Base': {
|
| + 'msvs_target_platform': 'x64',
|
| + },
|
| + },
|
| + },
|
| ],
|
| }],
|
| ],
|
|
|