Title: [100122] trunk/Source/WebKit/chromium
Revision
100122
Author
[email protected]
Date
2011-11-14 03:49:29 -0800 (Mon, 14 Nov 2011)

Log Message

[chromium] r99963 causes inspector/debugger/script-formatter.html to fail text diff
https://bugs.webkit.org/show_bug.cgi?id=72204

The concatenate_script_formatter_worker_js action (along with concatenate_heap_snapshot_worker_js)
did not depend on their 'input_file' files and, hence, did not get invoked on their input_file changes.

Reviewed by Yury Semikhatsky.

* WebKit.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (100121 => 100122)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-11-14 11:24:26 UTC (rev 100121)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-11-14 11:49:29 UTC (rev 100122)
@@ -1,3 +1,15 @@
+2011-11-14  Alexander Pavlov  <[email protected]>
+
+        [chromium] r99963 causes inspector/debugger/script-formatter.html to fail text diff
+        https://bugs.webkit.org/show_bug.cgi?id=72204
+
+        The concatenate_script_formatter_worker_js action (along with concatenate_heap_snapshot_worker_js)
+        did not depend on their 'input_file' files and, hence, did not get invoked on their input_file changes.
+
+        Reviewed by Yury Semikhatsky.
+
+        * WebKit.gyp:
+
 2011-11-13  Nat Duca  <[email protected]>
 
         [chromium] LayerRendererChromium::initialize should fail when GaphicsContext3D::makeCurrent fails

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (100121 => 100122)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2011-11-14 11:24:26 UTC (rev 100121)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2011-11-14 11:49:29 UTC (rev 100122)
@@ -1439,6 +1439,7 @@
                         'input_file': '../../WebCore/inspector/front-end/HeapSnapshotWorker.js',
                         'inputs': [
                             '<@(_script_name)',
+                            '<@(_input_file)',
                             '../../WebCore/inspector/front-end/BinarySearch.js',
                             '../../WebCore/inspector/front-end/HeapSnapshot.js',
                             '../../WebCore/inspector/front-end/HeapSnapshotWorkerDispatcher.js',
@@ -1458,6 +1459,7 @@
                         'input_file': '../../WebCore/inspector/front-end/ScriptFormatterWorker.js',
                         'inputs': [
                             '<@(_script_name)',
+                            '<@(_input_file)',
                             '<@(webinspector_uglifyjs_files)'
                         ],
                         'search_path': '../../WebCore/inspector/front-end',
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to