Changes between Version 7 and Version 8 of WebInspectorDebugging


Ignore:
Timestamp:
May 17, 2016 11:57:51 AM (8 years ago)
Author:
BJ Burg
Comment:

How to disable combining test resources.

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorDebugging

    v7 v8  
    8484defaults write -g WebKitDebugLogsPageMessagesToSystemConsoleEnabled -bool YES
    8585}}}
     86
     87== Disabling Minification and Concatenation
     88
     89By default, all Inspector resources are combined in a single file to minimize the time spent loading many small local files through WebKit's loading infrastructure. Unfortunately, this can make stack traces in test output hard to read. To disable combining of test resources (on Mac), go to the file:
     90
     91{{{
     92./OpenSource/Source/WebInspectorUI/Configurations/DebugRelease.xcconfig
     93}}}
     94
     95and set `COMBINE_TEST_RESOURCES = NO`. Then rebuild the WebInspectorUI project:
     96
     97{{{
     98make -C OpenSource/Source/WebInspectorUI/ release
     99}}}
     100
     101and run your test again.