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

Unified Diff: chrome/chrome.gyp

Issue 455037: Make no-tcmalloc (really, non-base/allocator) builds work again,... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years 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 | « chrome/browser/memory_purger.cc ('k') | chrome/renderer/render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 33615)
+++ chrome/chrome.gyp (working copy)
@@ -1069,13 +1069,17 @@
'include_dirs': [
'third_party/wtl/include',
],
- 'dependencies': [
- '<(allocator_target)',
+ 'conditions': [
+ ['win_use_allocator_shim==1', {
+ 'dependencies': [
+ '<(allocator_target)',
+ ],
+ 'export_dependent_settings': [
+ '<(allocator_target)',
+ ],
+ }],
],
- 'export_dependent_settings': [
- '<(allocator_target)',
- ],
- },],
+ }],
],
},
{
@@ -2748,7 +2752,6 @@
'installer/mini_installer.gyp:*',
'installer/installer.gyp:*',
'../app/app.gyp:*',
- '../base/allocator/allocator.gyp:*',
'../base/base.gyp:*',
'../ipc/ipc.gyp:*',
'../media/media.gyp:*',
@@ -2788,6 +2791,11 @@
'../v8/tools/gyp/v8.gyp:v8_shell',
],
'conditions': [
+ ['win_use_allocator_shim==1', {
+ 'dependencies': [
+ '../base/allocator/allocator.gyp:*',
+ ],
+ }],
['chrome_frame_define==1', {
'dependencies': [
'../chrome_frame/chrome_frame.gyp:*',
@@ -2922,8 +2930,12 @@
],
'conditions': [
['OS=="win"', {
- 'dependencies': [
- '<(allocator_target)',
+ 'conditions': [
+ ['win_use_allocator_shim==1', {
+ 'dependencies': [
+ '<(allocator_target)',
+ ],
+ }],
],
'configurations': {
'Debug': {
« no previous file with comments | « chrome/browser/memory_purger.cc ('k') | chrome/renderer/render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698