Remove the last bits of the Sky Inspector

Unclear what if any of this we will want in the Dart world.

R=abarth@chromium.org

Review URL: https://codereview.chromium.org/993203002
This commit is contained in:
Eric Seidel 2015-03-11 10:13:25 -07:00
parent 457da82302
commit a5ab3630e9
7 changed files with 0 additions and 52 deletions

View File

@ -12,7 +12,6 @@ group("sky") {
"//sky/engine/platform:platform_unittests",
"//sky/engine/web:sky_unittests",
"//sky/engine/wtf:unittests",
"//sky/services/inspector",
"//sky/tools/debugger",
"//sky/tools/imagediff",
"//sky/tools/tester",

View File

@ -1,17 +0,0 @@
# 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("inspector") {
deps = [
":bindings",
]
}
mojom("bindings") {
sources = [
"inspector.mojom",
]
}

View File

@ -1,15 +0,0 @@
// 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.
module sky;
interface InspectorFrontend {
SendMessage(string message);
};
interface InspectorBackend {
OnConnect();
OnDisconnect();
OnMessage(string message);
};

View File

@ -34,6 +34,5 @@ mojo_native_application("sky_debugger") {
"//services/http_server/public",
"//services/http_server/public:util",
"//services/tracing:bindings",
"//sky/viewer:bindings",
]
}

View File

@ -27,6 +27,5 @@ mojo_native_application("tester") {
"//mojo/services/view_manager/public/cpp",
"//services/window_manager:lib",
"//sky/services/testing:bindings",
"//sky/viewer:bindings",
]
}

View File

@ -27,7 +27,6 @@ mojo_native_application("viewer") {
include_dirs = [ ".." ]
deps = [
":bindings",
"//mojo/application",
"//mojo/common",
"//mojo/common:tracing_impl",
@ -52,7 +51,6 @@ mojo_native_application("viewer") {
"//sky/compositor",
"//sky/engine",
"//sky/engine/tonic",
"//sky/services/inspector:bindings",
"//sky/services/platform",
"//sky/services/testing:bindings",
"//third_party/icu",
@ -60,9 +58,3 @@ mojo_native_application("viewer") {
"//url",
]
}
mojom("bindings") {
sources = [
"services/inspector.mojom",
]
}

View File

@ -1,9 +0,0 @@
// 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.
module sky;
interface InspectorService {
Inject();
};