OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/ui.gni") | |
6 | |
7 source_set("native_viewport") { | |
8 sources = [ | |
9 "onscreen_context_provider.cc", | |
10 "onscreen_context_provider.h", | |
11 ] | |
12 | |
13 deps = [ | |
14 "//base", | |
15 "//components/view_manager/gles2", | |
16 "//components/view_manager/public/interfaces", | |
17 "//gpu/command_buffer/service", | |
18 "//mojo/application/public/cpp", | |
19 "//mojo/common:tracing_impl", | |
20 "//ui/gfx", | |
21 "//ui/gl", | |
22 "//ui/mojo/geometry:interfaces", | |
23 ] | |
24 } | |
OLD | NEW |