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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 | 8 |
9 mojo_native_application("view_manager") { | 9 mojo_native_application("view_manager") { |
10 sources = [ | 10 sources = [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ] | 68 ] |
69 | 69 |
70 public_deps = [ | 70 public_deps = [ |
71 "//components/view_manager/public/cpp", | 71 "//components/view_manager/public/cpp", |
72 ] | 72 ] |
73 | 73 |
74 deps = [ | 74 deps = [ |
75 "//base", | 75 "//base", |
76 "//cc/surfaces", | 76 "//cc/surfaces", |
77 "//cc/surfaces:surface_id", | 77 "//cc/surfaces:surface_id", |
78 "//components/native_viewport/public/interfaces", | |
79 "//components/surfaces/public/interfaces", | 78 "//components/surfaces/public/interfaces", |
80 "//components/view_manager/public/cpp:common", | 79 "//components/view_manager/public/cpp:common", |
81 "//components/view_manager/public/interfaces", | 80 "//components/view_manager/public/interfaces", |
| 81 "//components/view_manager/native_viewport", |
82 "//mojo/application", | 82 "//mojo/application", |
83 "//mojo/application/public/interfaces", | 83 "//mojo/application/public/interfaces", |
84 "//mojo/common", | 84 "//mojo/common", |
85 "//mojo/common:tracing_impl", | 85 "//mojo/common:tracing_impl", |
86 "//mojo/converters/geometry", | 86 "//mojo/converters/geometry", |
87 "//mojo/converters/input_events", | 87 "//mojo/converters/input_events", |
88 "//mojo/converters/surfaces", | 88 "//mojo/converters/surfaces", |
89 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 89 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
90 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 90 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
91 "//ui/mojo/geometry:interfaces", | 91 "//ui/mojo/geometry:interfaces", |
92 "//ui/mojo/events:interfaces", | 92 "//ui/mojo/events:interfaces", |
93 "//ui/gfx", | 93 "//ui/gfx", |
94 "//ui/gfx/geometry", | 94 "//ui/gfx/geometry", |
95 ] | 95 ] |
96 | 96 |
97 data_deps = [ | 97 data_deps = [ "//components/surfaces" ] |
98 "//components/native_viewport", | |
99 "//components/surfaces", | |
100 ] | |
101 } | 98 } |
102 | 99 |
103 source_set("test_support") { | 100 source_set("test_support") { |
104 testonly = true | 101 testonly = true |
105 | 102 |
106 sources = [ | 103 sources = [ |
107 "test_change_tracker.cc", | 104 "test_change_tracker.cc", |
108 "test_change_tracker.h", | 105 "test_change_tracker.h", |
109 ] | 106 ] |
110 | 107 |
(...skipping 20 matching lines...) Expand all Loading... |
131 "test_server_view_delegate.h", | 128 "test_server_view_delegate.h", |
132 "view_coordinate_conversions_unittest.cc", | 129 "view_coordinate_conversions_unittest.cc", |
133 "view_manager_service_unittest.cc", | 130 "view_manager_service_unittest.cc", |
134 ] | 131 ] |
135 | 132 |
136 deps = [ | 133 deps = [ |
137 ":test_support", | 134 ":test_support", |
138 ":view_manager_lib", | 135 ":view_manager_lib", |
139 "//base", | 136 "//base", |
140 "//base/test:test_config", | 137 "//base/test:test_config", |
141 "//components/native_viewport/public/cpp:args", | |
142 "//components/view_manager/public/cpp:common", | 138 "//components/view_manager/public/cpp:common", |
143 "//components/view_manager/public/interfaces", | 139 "//components/view_manager/public/interfaces", |
144 "//mojo/application/public/interfaces", | 140 "//mojo/application/public/interfaces", |
145 "//mojo/converters/geometry", | 141 "//mojo/converters/geometry", |
146 "//mojo/converters/input_events", | 142 "//mojo/converters/input_events", |
147 "//mojo/environment:chromium", | 143 "//mojo/environment:chromium", |
148 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 144 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
149 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 145 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
150 "//ui/mojo/geometry:interfaces", | 146 "//ui/mojo/geometry:interfaces", |
151 "//ui/mojo/events:interfaces", | 147 "//ui/mojo/events:interfaces", |
(...skipping 26 matching lines...) Expand all Loading... |
178 "//mojo/application", | 174 "//mojo/application", |
179 "//mojo/application:test_support", | 175 "//mojo/application:test_support", |
180 "//mojo/common", | 176 "//mojo/common", |
181 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 177 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
182 "//ui/mojo/geometry:interfaces", | 178 "//ui/mojo/geometry:interfaces", |
183 "//ui/mojo/geometry:util", | 179 "//ui/mojo/geometry:util", |
184 ] | 180 ] |
185 | 181 |
186 data_deps = [ ":view_manager" ] | 182 data_deps = [ ":view_manager" ] |
187 } | 183 } |
OLD | NEW |