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

Unified Diff: mojo/services/window_manager/BUILD.gn

Issue 765753003: Move window_manager service implementation to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « mojo/services/BUILD.gn ('k') | mojo/services/window_manager/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/window_manager/BUILD.gn
diff --git a/mojo/services/window_manager/BUILD.gn b/mojo/services/window_manager/BUILD.gn
deleted file mode 100644
index a9bbebed6a3f2e7e38d4a1384e588783553c76b9..0000000000000000000000000000000000000000
--- a/mojo/services/window_manager/BUILD.gn
+++ /dev/null
@@ -1,101 +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("//build/config/ui.gni")
-import("//mojo/public/mojo_application.gni")
-
-mojo_native_application("window_manager") {
- sources = [ "main.cc" ]
-
- public_deps = [
- ":lib",
- ]
-
- deps = [
- "//base",
- "//mojo/application",
- "//mojo/common:tracing_impl",
- "//mojo/public/c/system:for_shared_library",
- "//mojo/services/public/cpp/view_manager",
- ]
-}
-
-source_set("lib") {
- sources = [
- "basic_focus_rules.cc",
- "basic_focus_rules.h",
- "focus_controller.cc",
- "focus_controller.h",
- "focus_controller_observer.h",
- "focus_rules.h",
- "native_viewport_event_dispatcher_impl.cc",
- "native_viewport_event_dispatcher_impl.h",
- "window_manager_app.cc",
- "window_manager_app.h",
- "window_manager_delegate.h",
- "window_manager_impl.cc",
- "window_manager_impl.h",
- "view_event_dispatcher.cc",
- "view_event_dispatcher.h",
- "view_target.cc",
- "view_target.h",
- "view_targeter.cc",
- "view_targeter.h",
- ]
-
- deps = [
- "//base",
- "//ui/base",
- "//ui/events",
- "//ui/gfx",
- "//ui/gfx/geometry",
- "//mojo/application",
- "//mojo/common",
- "//mojo/converters/geometry",
- "//mojo/converters/input_events",
- "//mojo/public/cpp/bindings:bindings",
- "//mojo/public/interfaces/application",
- "//mojo/services/public/cpp/view_manager",
- "//mojo/services/public/interfaces/native_viewport",
- "//mojo/services/public/interfaces/window_manager",
- ]
-}
-
-test("window_manager_unittests") {
- sources = [
- "focus_controller_unittest.cc",
- "view_target_unittest.cc",
- "view_targeter_unittest.cc",
- "window_manager_api_unittest.cc",
- "window_manager_test_util.cc",
- "window_manager_test_util.h",
- "window_manager_unittests.cc",
- ]
-
- public_deps = [
- ":lib",
- ]
-
- deps = [
- "//base/test:test_support",
- "//mojo/application_manager",
- "//mojo/converters/geometry",
- "//mojo/edk/system",
- "//mojo/environment:chromium",
- "//mojo/public/cpp/application",
- "//mojo/services/public/cpp/view_manager",
- "//mojo/services/public/interfaces/view_manager",
- "//mojo/services/public/interfaces/window_manager",
- "//mojo/shell:test_support",
- "//testing/gtest",
- "//ui/events:test_support",
- "//ui/gfx",
- "//ui/gfx:test_support",
- "//ui/gl",
- ]
-
- if (use_x11) {
- deps += [ "//ui/gfx/x" ]
- }
-}
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/window_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698