OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/ui.gni") |
| 6 import("//mojo/system.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 |
| 9 assert(use_aura) |
| 10 |
| 11 # GYP version: mojo/mojo_examples.gypi:mojo_window_manager |
| 12 shared_library("window_manager") { |
| 13 output_name = "mojo_window_manager" |
| 14 |
| 15 sources = [ |
| 16 "debug_panel.cc", |
| 17 "debug_panel.h", |
| 18 "window_manager.cc", |
| 19 ] |
| 20 |
| 21 deps = [ |
| 22 ":bindings", |
| 23 "//base", |
| 24 "//mojo/application", |
| 25 "//mojo/aura", |
| 26 "//mojo/examples/keyboard:bindings", |
| 27 "//mojo/public/cpp/bindings", |
| 28 "//mojo/public/cpp/utility", |
| 29 "//mojo/services/public/cpp/geometry", |
| 30 "//mojo/services/public/cpp/input_events", |
| 31 "//mojo/services/public/cpp/view_manager", |
| 32 "//mojo/services/public/interfaces/geometry", |
| 33 "//mojo/services/public/interfaces/input_events", |
| 34 "//mojo/services/public/interfaces/navigation", |
| 35 "//mojo/services/window_manager:lib", |
| 36 "//mojo/views", |
| 37 "//ui/aura", |
| 38 "//ui/base", |
| 39 "//ui/gfx", |
| 40 "//ui/gfx/geometry", |
| 41 "//ui/gl", |
| 42 "//ui/resources", |
| 43 "//ui/views", |
| 44 ] + mojo_system_for_shared_library + mojo_gles2_for_shared_library |
| 45 } |
| 46 |
| 47 # GYP version: mojo/mojo_examples.gypi:mojo_window_manager_bindings |
| 48 mojom("bindings") { |
| 49 sources = [ |
| 50 "window_manager.mojom", |
| 51 ] |
| 52 deps = [ |
| 53 "//mojo/services/public/interfaces/geometry", |
| 54 ] |
| 55 } |
| 56 |
OLD | NEW |