| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 sources = [ | 10 sources = [ |
| 11 "window_manager_app.cc", | 11 "window_manager_app.cc", |
| 12 "window_manager_app.h", | 12 "window_manager_app.h", |
| 13 "window_manager_delegate.h", | 13 "window_manager_delegate.h", |
| 14 "window_manager_impl.cc", | 14 "window_manager_impl.cc", |
| 15 "window_manager_impl.h", | 15 "window_manager_impl.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//components/view_manager/public/cpp", | 20 "//components/view_manager/public/cpp", |
| 21 "//components/window_manager/public/interfaces", | 21 "//components/window_manager/public/interfaces", |
| 22 "//mojo/application", | 22 "//mojo/application", |
| 23 "//mojo/application/public/interfaces", |
| 23 "//mojo/common", | 24 "//mojo/common", |
| 24 "//mojo/converters/geometry", | 25 "//mojo/converters/geometry", |
| 25 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 26 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
| 26 "//third_party/mojo/src/mojo/public/interfaces/application", | |
| 27 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 28 "//ui/mojo/events:interfaces", | 28 "//ui/mojo/events:interfaces", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 data_deps = [ "//components/view_manager" ] | 31 data_deps = [ "//components/view_manager" ] |
| 32 } | 32 } |
| 33 | 33 |
| 34 # A basic window manager with a default delegate used for testing. | 34 # A basic window manager with a default delegate used for testing. |
| 35 mojo_native_application("test_window_manager") { | 35 mojo_native_application("test_window_manager") { |
| 36 sources = [ | 36 sources = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 62 "//components/view_manager/public/cpp", | 62 "//components/view_manager/public/cpp", |
| 63 "//components/window_manager/public/interfaces", | 63 "//components/window_manager/public/interfaces", |
| 64 "//mojo/application", | 64 "//mojo/application", |
| 65 "//mojo/application:test_support", | 65 "//mojo/application:test_support", |
| 66 "//mojo/environment:chromium", | 66 "//mojo/environment:chromium", |
| 67 "//third_party/mojo/src/mojo/public/cpp/system:system", | 67 "//third_party/mojo/src/mojo/public/cpp/system:system", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 data_deps = [ ":test_window_manager($default_toolchain)" ] | 70 data_deps = [ ":test_window_manager($default_toolchain)" ] |
| 71 } | 71 } |
| OLD | NEW |