mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Already other applications use sky's simple window manager (mojo:sky_debugger) as a full-screen window manager. This moves this to /services and removes all sky references from it. As a part of this I've removed inspector support from skydb. It was already broken and will need to be re-thought to not involve calls into this new window manager. I'm also flipping the relationship between prompt.cc and debugger.cc for skydb. Skydb will tell mojo_shell to start sky_debugger_prompt instead of sky_debugger. I'm also renaming sky_debugger_prompt to be sky_debugger. R=abarth@chromium.org BUG= Review URL: https://codereview.chromium.org/883983004
39 lines
809 B
Plaintext
39 lines
809 B
Plaintext
# Copyright 2014 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("//mojo/public/mojo_application.gni")
|
|
|
|
group("debugger") {
|
|
testonly = true
|
|
|
|
deps = [
|
|
":sky_debugger",
|
|
]
|
|
}
|
|
|
|
mojo_native_application("sky_debugger") {
|
|
output_name = "sky_debugger"
|
|
|
|
sources = [
|
|
"debugger.cc",
|
|
"trace_collector.cc",
|
|
"trace_collector.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/allocator",
|
|
"//mojo/application",
|
|
"//mojo/common",
|
|
"//mojo/public/cpp/bindings",
|
|
"//mojo/public/cpp/system",
|
|
"//mojo/public/cpp/utility",
|
|
"//mojo/services/window_manager/public/interfaces",
|
|
"//net",
|
|
"//net:http_server",
|
|
"//services/tracing:bindings",
|
|
"//sky/viewer:bindings",
|
|
]
|
|
}
|