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

Unified Diff: sky/framework/inspector/server/BUILD.gn

Issue 687673003: Add beginnings of an inspector backend for Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « sky/framework/inspector/page-agent.sky ('k') | sky/framework/inspector/server/inspector.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/inspector/server/BUILD.gn
diff --git a/sky/tools/debugger/BUILD.gn b/sky/framework/inspector/server/BUILD.gn
similarity index 50%
copy from sky/tools/debugger/BUILD.gn
copy to sky/framework/inspector/server/BUILD.gn
index 1efddf46f901076ffd15cd4317036a7841bd851c..d9a06a2b1f2655de263b50b6084b4dbec13ba3e0 100644
--- a/sky/tools/debugger/BUILD.gn
+++ b/sky/framework/inspector/server/BUILD.gn
@@ -4,42 +4,34 @@
import("//mojo/public/tools/bindings/mojom.gni")
-group("debugger") {
+group("server") {
testonly = true
deps = [
- "//sky/tools/debugger/prompt",
- ":sky_debugger",
+ ":sky_inspector_server",
]
}
-shared_library("sky_debugger") {
+shared_library("sky_inspector_server") {
sources = [
- "debugger.cc",
- "focus_rules.cc",
- "focus_rules.h",
+ "inspector_frontend_impl.cc",
+ "inspector_frontend_impl.h",
+ "server.cc",
]
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/window_manager:lib",
- "//sky/viewer:bindings",
- "//ui/aura:aura",
- "//ui/wm:wm",
+ "//net:http_server",
":bindings",
]
}
mojom("bindings") {
sources = [
- "debugger.mojom",
+ "inspector.mojom",
]
}
« no previous file with comments | « sky/framework/inspector/page-agent.sky ('k') | sky/framework/inspector/server/inspector.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698