Title: [93808] trunk/Source/WebKit/chromium
Revision
93808
Author
commit-qu...@webkit.org
Date
2011-08-25 12:21:41 -0700 (Thu, 25 Aug 2011)

Log Message

Enable incremental linking for component build on Chromium
https://bugs.webkit.org/show_bug.cgi?id=66950

Patch by Scott Graham <scot...@chromium.org> on 2011-08-25
Reviewed by Darin Fisher.

Turns on Use Library Dependency Inputs for webkit.vcproj on Windows
build, when incremental_chrome_dll gyp flag is set. This is to get
faster incremental links on Windows builds.

* WebKit.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (93807 => 93808)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-08-25 19:17:51 UTC (rev 93807)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-08-25 19:21:41 UTC (rev 93808)
@@ -1,3 +1,16 @@
+2011-08-25  Scott Graham  <scot...@chromium.org>
+
+        Enable incremental linking for component build on Chromium
+        https://bugs.webkit.org/show_bug.cgi?id=66950
+
+        Reviewed by Darin Fisher.
+
+        Turns on Use Library Dependency Inputs for webkit.vcproj on Windows
+        build, when incremental_chrome_dll gyp flag is set. This is to get
+        faster incremental links on Windows builds.
+
+        * WebKit.gyp:
+
 2011-08-25  Pavel Podivilov  <podivi...@chromium.org>
 
         Unreviewed, fix chromium devtools tests.

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (93807 => 93808)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-25 19:17:51 UTC (rev 93807)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-08-25 19:21:41 UTC (rev 93808)
@@ -670,7 +670,16 @@
                                         '<(chromium_src_dir)/third_party/nss/nss.gyp:*',
                                     ],
                                 }],
-                            ]
+                            ],
+                            'msvs_settings': {
+                              'VCLinkerTool': {
+                                'conditions': [
+                                  ['incremental_chrome_dll==1', {
+                                    'UseLibraryDependencyInputs': "true",
+                                  }],
+                                ],
+                              },
+                            },
                         }],
                     ],
                 }],
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to