OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 group("wm") { | 9 group("wm") { |
10 testonly = true | 10 testonly = true |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "//components/mus/example/wm/public/interfaces", | 43 "//components/mus/example/wm/public/interfaces", |
44 "//components/mus/common", | 44 "//components/mus/common", |
45 "//components/mus/public/cpp", | 45 "//components/mus/public/cpp", |
46 "//components/mus/public/interfaces", | 46 "//components/mus/public/interfaces", |
47 "//mojo/application/public/cpp", | 47 "//mojo/application/public/cpp", |
48 "//mojo/common:common_base", | 48 "//mojo/common:common_base", |
49 "//mojo/converters/geometry", | 49 "//mojo/converters/geometry", |
50 "//skia", | 50 "//skia", |
51 "//ui/mojo/init", | 51 "//ui/mojo/init", |
52 "//ui/views", | 52 "//ui/views", |
53 "//ui/views/mus", | 53 "//ui/views/mus:for_mojo_application", |
54 ] | 54 ] |
55 } | 55 } |
56 | 56 |
57 mojo_native_application("example_wm") { | 57 mojo_native_application("example_wm") { |
58 sources = [ | 58 sources = [ |
59 "main.cc", | 59 "main.cc", |
60 ] | 60 ] |
61 | 61 |
62 deps = [ | 62 deps = [ |
63 ":example_wm_lib", | 63 ":example_wm_lib", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "//mojo/public/cpp/system", | 119 "//mojo/public/cpp/system", |
120 "//testing/gtest", | 120 "//testing/gtest", |
121 "//third_party/mojo/src/mojo/edk/system", | 121 "//third_party/mojo/src/mojo/edk/system", |
122 "//ui/events", | 122 "//ui/events", |
123 "//ui/gfx/geometry", | 123 "//ui/gfx/geometry", |
124 "//ui/gfx:test_support", | 124 "//ui/gfx:test_support", |
125 "//ui/mojo/geometry:interfaces", | 125 "//ui/mojo/geometry:interfaces", |
126 "//ui/mojo/geometry:util", | 126 "//ui/mojo/geometry:util", |
127 ] | 127 ] |
128 } | 128 } |
OLD | NEW |