| Index: third_party/WebKit/Source/devtools/scripts/compile_frontend.py
|
| diff --git a/third_party/WebKit/Source/devtools/scripts/compile_frontend.py b/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
|
| index c94eaf65362315713f745f2fa69817563eb7d278..afc56679eec363850e892b14eb82d0959119b04a 100755
|
| --- a/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
|
| +++ b/third_party/WebKit/Source/devtools/scripts/compile_frontend.py
|
| @@ -123,7 +123,14 @@ def error_excepthook(exctype, value, traceback):
|
| sys.__excepthook__(exctype, value, traceback)
|
| sys.excepthook = error_excepthook
|
|
|
| -application_descriptors = ['inspector.json', 'toolbox.json', 'formatter_worker.json', 'heap_snapshot_worker.json', 'utility_shared_worker.json']
|
| +application_descriptors = [
|
| + 'inspector.json',
|
| + 'toolbox.json',
|
| + 'unit_test_runner.json',
|
| + 'formatter_worker.json',
|
| + 'heap_snapshot_worker.json',
|
| + 'utility_shared_worker.json',
|
| +]
|
| loader = modular_build.DescriptorLoader(devtools_frontend_path)
|
| descriptors = loader.load_applications(application_descriptors)
|
| modules_by_name = descriptors.modules
|
|
|