mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Now the SkyDebugger implements NavigatorHost and actually navigates the mojo::View. This CL pulled a big refactor of sky/tools/debugger to separate out MojoMain from debugger.cc. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/690363002
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
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/tools/bindings/mojom.gni")
|
|
|
|
group("debugger") {
|
|
testonly = true
|
|
|
|
deps = [
|
|
"//sky/tools/debugger/prompt",
|
|
":sky_debugger",
|
|
]
|
|
}
|
|
|
|
shared_library("sky_debugger") {
|
|
sources = [
|
|
"debugger.cc",
|
|
"debugger.h",
|
|
"focus_rules.cc",
|
|
"focus_rules.h",
|
|
"main.cc",
|
|
"navigator_host_impl.cc",
|
|
"navigator_host_impl.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//mojo/application",
|
|
"//mojo/converters/geometry",
|
|
"//mojo/converters/input_events",
|
|
"//mojo/public/c/system:for_shared_library",
|
|
"//mojo/public/cpp/bindings",
|
|
"//mojo/public/cpp/utility",
|
|
"//mojo/services/public/cpp/view_manager",
|
|
"//mojo/services/public/interfaces/input_events:input_events",
|
|
"//mojo/services/public/interfaces/navigation",
|
|
"//mojo/services/window_manager:lib",
|
|
"//sky/viewer:bindings",
|
|
"//ui/aura:aura",
|
|
"//ui/wm:wm",
|
|
":bindings",
|
|
]
|
|
}
|
|
|
|
mojom("bindings") {
|
|
sources = [
|
|
"debugger.mojom",
|
|
]
|
|
}
|