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("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 mojo_native_application("window_manager") { | 9 mojo_native_application("window_manager") { |
10 sources = [ | 10 sources = [ |
11 "main.cc", | 11 "main.cc", |
12 ] | 12 ] |
13 | 13 |
14 public_deps = [ | 14 public_deps = [ |
15 ":lib", | 15 ":lib", |
16 ] | 16 ] |
17 | 17 |
18 deps = [ | 18 deps = [ |
19 "//base", | 19 "//base", |
20 "//mojo/application", | 20 "//mojo/application", |
| 21 "//mojo/common:tracing_impl", |
21 "//mojo/services/view_manager/public/cpp", | 22 "//mojo/services/view_manager/public/cpp", |
22 ] | 23 ] |
23 } | 24 } |
24 | 25 |
25 source_set("lib") { | 26 source_set("lib") { |
26 sources = [ | 27 sources = [ |
27 "basic_focus_rules.cc", | 28 "basic_focus_rules.cc", |
28 "basic_focus_rules.h", | 29 "basic_focus_rules.h", |
29 "capture_controller.cc", | 30 "capture_controller.cc", |
30 "capture_controller.h", | 31 "capture_controller.h", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 "//mojo/public/c/system:for_shared_library", | 119 "//mojo/public/c/system:for_shared_library", |
119 "//mojo/public/cpp/system:system", | 120 "//mojo/public/cpp/system:system", |
120 "//mojo/services/view_manager/public/cpp", | 121 "//mojo/services/view_manager/public/cpp", |
121 "//mojo/services/window_manager/public/interfaces", | 122 "//mojo/services/window_manager/public/interfaces", |
122 ] | 123 ] |
123 | 124 |
124 datadeps = [ | 125 datadeps = [ |
125 ":window_manager", | 126 ":window_manager", |
126 ] | 127 ] |
127 } | 128 } |
OLD | NEW |