Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Unified Diff: third_party/WebKit/Source/devtools/scripts/compile_frontend.py

Issue 2513423003: DevTools: Convert inspector-unit tests to use reusable test harness (Closed)
Patch Set: Moved type definition out of externs Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698