Title: [87097] trunk/Source/WebKit/chromium
Revision
87097
Author
[email protected]
Date
2011-05-23 14:06:45 -0700 (Mon, 23 May 2011)

Log Message

2011-05-23  Tony Chang  <[email protected]>

        Reviewed by James Robinson.

        [chromium] Link tcmalloc to DRT so we can use the heap checker
        https://bugs.webkit.org/show_bug.cgi?id=61292

        * WebKit.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (87096 => 87097)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-05-23 20:49:37 UTC (rev 87096)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-05-23 21:06:45 UTC (rev 87097)
@@ -1,3 +1,12 @@
+2011-05-23  Tony Chang  <[email protected]>
+
+        Reviewed by James Robinson.
+
+        [chromium] Link tcmalloc to DRT so we can use the heap checker
+        https://bugs.webkit.org/show_bug.cgi?id=61292
+
+        * WebKit.gyp:
+
 2011-05-23  Adrienne Walker  <[email protected]>
 
         Reviewed by James Robinson.

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (87096 => 87097)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-05-23 20:49:37 UTC (rev 87096)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-05-23 21:06:45 UTC (rev 87097)
@@ -1057,9 +1057,16 @@
                         ]
                     }],
                     'variables': {
-                      # FIXME: Enable warnings on other platforms.
-                      'chromium_code': 1,
+                        # FIXME: Enable warnings on other platforms.
+                        'chromium_code': 1,
                     },
+                    'conditions': [
+                        ['linux_use_tcmalloc == 1', {
+                            'dependencies': [
+                                '<(chromium_src_dir)/base/allocator/allocator.gyp:allocator',
+                            ],
+                        }],
+                    ],
                 },{ # toolkit_uses_gtk != 1
                     'sources/': [
                         ['exclude', '(Gtk|Linux)\\.cpp$']
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to