Commit 59dca747 authored by Yang Guo's avatar Yang Guo Committed by Commit Bot

Switch devtools frontend to external DEPS

Bug: 1011259
Change-Id: If6a80fa169c5286ed536688ab39f67c37a27faad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1855938Reviewed-by: default avatarMichael Achenbach <machenbach@chromium.org>
Reviewed-by: default avatarRick Byers <rbyers@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#707733}
parent 0e2ed562
...@@ -1020,17 +1020,17 @@ ...@@ -1020,17 +1020,17 @@
}, },
"devtools_closure_compile": { "devtools_closure_compile": {
"args": [ "args": [
"../../third_party/blink/renderer/devtools/scripts/compile_frontend.py", "../../third_party/devtools-frontend/src/scripts/compile_frontend.py",
], ],
"label": "//third_party/blink/renderer/devtools:devtools_closure_compile", "label": "//third_party/devtools-frontend/src:devtools_closure_compile",
"script": "//testing/scripts/run_devtools_check.py", "script": "//testing/scripts/run_devtools_check.py",
"type": "script", "type": "script",
}, },
"devtools_eslint": { "devtools_eslint": {
"args": [ "args": [
"../../third_party/blink/renderer/devtools/scripts/lint_javascript.py", "../../third_party/devtools-frontend/src/scripts/lint_javascript.py",
], ],
"label": "//third_party/blink/renderer/devtools:devtools_eslint", "label": "//third_party/devtools-frontend/src:devtools_eslint",
"script": "//testing/scripts/run_devtools_check.py", "script": "//testing/scripts/run_devtools_check.py",
"type": "script", "type": "script",
}, },
......
...@@ -13,7 +13,7 @@ declare_args() { ...@@ -13,7 +13,7 @@ declare_args() {
# If external_devtools_frontend is set to true, use DevTools frontend that is # If external_devtools_frontend is set to true, use DevTools frontend that is
# pulled as external dependency. # pulled as external dependency.
external_devtools_frontend = false external_devtools_frontend = true
} }
# Unhandled Tap enable means Contextual Search aka Tap to Search. # Unhandled Tap enable means Contextual Search aka Tap to Search.
......
...@@ -7,17 +7,17 @@ ...@@ -7,17 +7,17 @@
// This script is supposed to be evaluated in inspector-protocol/heap-profiler tests // This script is supposed to be evaluated in inspector-protocol/heap-profiler tests
// and the relative paths below are relative to that location. // and the relative paths below are relative to that location.
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/platform/utilities.js'); '../../../../devtools-frontend/src/front_end/platform/utilities.js');
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/common/UIString.js'); '../../../../devtools-frontend/src/front_end/common/UIString.js');
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/heap_snapshot_model/HeapSnapshotModel.js'); '../../../../devtools-frontend/src/front_end/heap_snapshot_model/HeapSnapshotModel.js');
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/heap_snapshot_worker/HeapSnapshot.js'); '../../../../devtools-frontend/src/front_end/heap_snapshot_worker/HeapSnapshot.js');
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/text_utils/TextUtils.js'); '../../../../devtools-frontend/src/front_end/text_utils/TextUtils.js');
await testRunner.loadScriptModule( await testRunner.loadScriptModule(
'../../../../blink/renderer/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js'); '../../../../devtools-frontend/src/front_end/heap_snapshot_worker/HeapSnapshotLoader.js');
// Expose the (de)serialize code from Common because the worker expects it on self. // Expose the (de)serialize code from Common because the worker expects it on self.
// TODO(https://crbug.com/680046) Remove the dupe code below. // TODO(https://crbug.com/680046) Remove the dupe code below.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment