 Chromium Code Reviews
 Chromium Code Reviews Issue 14321006:
  Adds TCMalloc support for Android.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 14321006:
  Adds TCMalloc support for Android.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: content/content_shell.gypi | 
| diff --git a/content/content_shell.gypi b/content/content_shell.gypi | 
| index b245dd3966506557a713efe3d05f4020dccac370..feeac35c44bb3eed97ab09277c836b453ae5242f 100644 | 
| --- a/content/content_shell.gypi | 
| +++ b/content/content_shell.gypi | 
| @@ -187,7 +187,13 @@ | 
| 'dependencies': [ | 
| 'content_shell_jni_headers', | 
| ], | 
| - }, { # else: OS!="android" | 
| + }], | 
| + ['OS=="android" and android_use_tcmalloc==1', { | 
| + 'dependencies': [ | 
| + '../base/allocator/allocator.gyp:allocator', | 
| + ], | 
| + }], | 
| + ['OS!="android"', { | 
| 
Peter Beverloo
2013/04/29 17:03:31
Why don't you add the block on 191-195 below line
 
bulach
2013/04/30 18:43:08
Done.
 | 
| 'dependencies': [ | 
| # This dependency is for running DRT against the content shell, and | 
| # this combination is not yet supported on Android. |