| # Copyright 2020 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("../../scripts/build/ninja/devtools_entrypoint.gni") |
| import("../../scripts/build/ninja/devtools_module.gni") |
| |
| devtools_module("source_frame") { |
| sources = [ |
| "BinaryResourceViewFactory.js", |
| "FontView.js", |
| "ImageView.js", |
| "JSONView.js", |
| "PreviewFactory.js", |
| "ResourceSourceFrame.js", |
| "SourceCodeDiff.js", |
| "SourceFrame.js", |
| "SourcesTextEditor.js", |
| "XMLView.js", |
| ] |
| |
| deps = [ |
| "../common:bundle", |
| "../diff:bundle", |
| "../formatter:bundle", |
| "../host:bundle", |
| "../object_ui:bundle", |
| "../platform:bundle", |
| "../sdk:bundle", |
| "../text_editor:bundle", |
| "../text_utils:bundle", |
| "../ui:bundle", |
| "../workspace:bundle", |
| ] |
| } |
| |
| devtools_entrypoint("bundle") { |
| entrypoint = "source_frame.js" |
| |
| deps = [ ":source_frame" ] |
| } |
| |
| devtools_entrypoint("legacy") { |
| entrypoint = "source_frame-legacy.js" |
| |
| deps = [ ":bundle" ] |
| } |