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

Unified Diff: sky/tools/debugger/BUILD.gn

Issue 883983004: Rename SkyDebugger to KioskWM and move to /services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rename to KioskWM per discussion with jamesr Created 5 years, 11 months 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: sky/tools/debugger/BUILD.gn
diff --git a/sky/tools/debugger/BUILD.gn b/sky/tools/debugger/BUILD.gn
index c41a262a7a266353ce5e865d16744fc4efba466d..f0e075215e0313c0e75fcadec87d1993247bde78 100644
--- a/sky/tools/debugger/BUILD.gn
+++ b/sky/tools/debugger/BUILD.gn
@@ -3,44 +3,36 @@
# found in the LICENSE file.
import("//mojo/public/mojo_application.gni")
-import("//mojo/public/tools/bindings/mojom.gni")
group("debugger") {
testonly = true
deps = [
- "//sky/tools/debugger/prompt",
":sky_debugger",
]
}
mojo_native_application("sky_debugger") {
+ output_name = "sky_debugger"
+
sources = [
"debugger.cc",
- "debugger.h",
- "main.cc",
- "navigator_host_impl.cc",
- "navigator_host_impl.h",
+ "trace_collector.cc",
+ "trace_collector.h",
]
deps = [
"//base",
+ "//base/allocator",
"//mojo/application",
- "//mojo/converters/geometry",
- "//mojo/converters/input_events",
+ "//mojo/common",
"//mojo/public/cpp/bindings",
+ "//mojo/public/cpp/system",
"//mojo/public/cpp/utility",
- "//mojo/services/input_events/public/interfaces",
- "//mojo/services/navigation/public/interfaces",
- "//mojo/services/view_manager/public/cpp",
- "//services/window_manager:lib",
+ "//mojo/services/window_manager/public/interfaces",
+ "//net",
+ "//net:http_server",
+ "//services/tracing:bindings",
"//sky/viewer:bindings",
- ":bindings",
- ]
-}
-
-mojom("bindings") {
- sources = [
- "debugger.mojom",
]
}

Powered by Google App Engine
This is Rietveld 408576698