From a5ab3630e940370fa52cce1289adb33aa3ec4b27 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Wed, 11 Mar 2015 10:13:25 -0700 Subject: [PATCH] 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 --- BUILD.gn | 1 - services/inspector/BUILD.gn | 17 ----------------- services/inspector/inspector.mojom | 15 --------------- tools/debugger/BUILD.gn | 1 - tools/tester/BUILD.gn | 1 - viewer/BUILD.gn | 8 -------- viewer/services/inspector.mojom | 9 --------- 7 files changed, 52 deletions(-) delete mode 100644 services/inspector/BUILD.gn delete mode 100644 services/inspector/inspector.mojom delete mode 100644 viewer/services/inspector.mojom diff --git a/BUILD.gn b/BUILD.gn index 780daf98444..961a5702502 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -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", diff --git a/services/inspector/BUILD.gn b/services/inspector/BUILD.gn deleted file mode 100644 index 5a9b3d39c16..00000000000 --- a/services/inspector/BUILD.gn +++ /dev/null @@ -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", - ] -} diff --git a/services/inspector/inspector.mojom b/services/inspector/inspector.mojom deleted file mode 100644 index 0ed53658b24..00000000000 --- a/services/inspector/inspector.mojom +++ /dev/null @@ -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); -}; diff --git a/tools/debugger/BUILD.gn b/tools/debugger/BUILD.gn index 2d7e00cec24..d0cebeaf8be 100644 --- a/tools/debugger/BUILD.gn +++ b/tools/debugger/BUILD.gn @@ -34,6 +34,5 @@ mojo_native_application("sky_debugger") { "//services/http_server/public", "//services/http_server/public:util", "//services/tracing:bindings", - "//sky/viewer:bindings", ] } diff --git a/tools/tester/BUILD.gn b/tools/tester/BUILD.gn index 3da125a2bfa..a84cbabf83e 100644 --- a/tools/tester/BUILD.gn +++ b/tools/tester/BUILD.gn @@ -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", ] } diff --git a/viewer/BUILD.gn b/viewer/BUILD.gn index 232f4120449..20505a9f756 100644 --- a/viewer/BUILD.gn +++ b/viewer/BUILD.gn @@ -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", - ] -} diff --git a/viewer/services/inspector.mojom b/viewer/services/inspector.mojom deleted file mode 100644 index d4db17ce1c5..00000000000 --- a/viewer/services/inspector.mojom +++ /dev/null @@ -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(); -};