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 | 8 |
8 mojo_native_application("window_manager") { | 9 mojo_native_application("window_manager") { |
9 sources = [ | 10 sources = [ |
10 "main.cc", | 11 "main.cc", |
11 ] | 12 ] |
12 | 13 |
13 public_deps = [ | 14 public_deps = [ |
14 ":lib", | 15 ":lib", |
15 ] | 16 ] |
16 | 17 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "//mojo/public/c/system:for_shared_library", | 118 "//mojo/public/c/system:for_shared_library", |
118 "//mojo/public/cpp/system:system", | 119 "//mojo/public/cpp/system:system", |
119 "//mojo/services/view_manager/public/cpp", | 120 "//mojo/services/view_manager/public/cpp", |
120 "//mojo/services/window_manager/public/interfaces", | 121 "//mojo/services/window_manager/public/interfaces", |
121 ] | 122 ] |
122 | 123 |
123 datadeps = [ | 124 datadeps = [ |
124 ":window_manager", | 125 ":window_manager", |
125 ] | 126 ] |
126 } | 127 } |
OLD | NEW |