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 30 matching lines...) Expand all Loading... |
41 deps = [ | 41 deps = [ |
42 "//base", | 42 "//base", |
43 "//components/mus/common", | 43 "//components/mus/common", |
44 "//components/mus/public/cpp", | 44 "//components/mus/public/cpp", |
45 "//components/mus/public/interfaces", | 45 "//components/mus/public/interfaces", |
46 "//mash/wm/public/interfaces", | 46 "//mash/wm/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 "//mojo/converters/input_events", | 50 "//mojo/converters/input_events", |
| 51 "//mojo/services/tracing/public/cpp", |
51 "//skia", | 52 "//skia", |
52 "//ui/mojo/init", | 53 "//ui/mojo/init", |
53 "//ui/views", | 54 "//ui/views", |
54 "//ui/views/mus:for_mojo_application", | 55 "//ui/views/mus:for_mojo_application", |
55 ] | 56 ] |
56 } | 57 } |
57 | 58 |
58 mojo_native_application("example_wm") { | 59 mojo_native_application("example_wm") { |
59 sources = [ | 60 sources = [ |
60 "main.cc", | 61 "main.cc", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "//mojo/public/cpp/system", | 121 "//mojo/public/cpp/system", |
121 "//testing/gtest", | 122 "//testing/gtest", |
122 "//third_party/mojo/src/mojo/edk/system", | 123 "//third_party/mojo/src/mojo/edk/system", |
123 "//ui/events", | 124 "//ui/events", |
124 "//ui/gfx/geometry", | 125 "//ui/gfx/geometry", |
125 "//ui/gfx:test_support", | 126 "//ui/gfx:test_support", |
126 "//ui/mojo/geometry:interfaces", | 127 "//ui/mojo/geometry:interfaces", |
127 "//ui/mojo/geometry:util", | 128 "//ui/mojo/geometry:util", |
128 ] | 129 ] |
129 } | 130 } |
OLD | NEW |