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 | 6 |
7 source_set("native_viewport") { | 7 source_set("native_viewport") { |
8 sources = [ | 8 sources = [ |
9 "onscreen_context_provider.cc", | 9 "onscreen_context_provider.cc", |
10 "onscreen_context_provider.h", | 10 "onscreen_context_provider.h", |
11 "platform_viewport.h", | |
12 "platform_viewport_common.cc", | |
13 ] | 11 ] |
14 | 12 |
15 deps = [ | 13 deps = [ |
16 "//base", | 14 "//base", |
17 "//components/view_manager/gles2", | 15 "//components/view_manager/gles2", |
18 "//components/view_manager/public/interfaces", | 16 "//components/view_manager/public/interfaces", |
19 "//gpu/command_buffer/service", | 17 "//gpu/command_buffer/service", |
20 "//mojo/application/public/cpp", | 18 "//mojo/application/public/cpp", |
21 "//mojo/common:tracing_impl", | 19 "//mojo/common:tracing_impl", |
22 "//mojo/converters/geometry", | |
23 "//mojo/converters/input_events", | |
24 "//ui/events", | |
25 "//ui/events/platform", | |
26 "//ui/gfx", | 20 "//ui/gfx", |
27 "//ui/gfx/geometry", | |
28 "//ui/gl", | 21 "//ui/gl", |
29 "//ui/mojo/geometry:interfaces", | 22 "//ui/mojo/geometry:interfaces", |
30 "//ui/platform_window:platform_impls", | |
31 ] | 23 ] |
32 } | 24 } |
OLD | NEW |