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("//mojo/public/tools/bindings/mojom.gni") | |
6 | |
7 # GYP version: mojo/mojo_services.gypi:mojo_gles2_service | |
8 source_set("gles2") { | |
9 public_deps = [ | |
10 ":lib", | |
11 ] | |
12 deps = [ | |
13 "//base", | |
14 "//gpu/command_buffer/service", | |
15 "//ui/gfx", | |
16 "//ui/gfx/geometry", | |
17 "//ui/gl", | |
18 ] | |
19 | |
20 sources = [ | |
21 "command_buffer_impl.cc", | |
22 "command_buffer_impl.h", | |
23 ] | |
24 } | |
25 | |
26 # GYP version: mojo/mojo_services.gypi:mojo_gles2_lib | |
27 source_set("lib") { | |
28 sources = [ | |
29 "command_buffer_type_conversions.cc", | |
30 "command_buffer_type_conversions.h", | |
31 "mojo_buffer_backing.cc", | |
32 "mojo_buffer_backing.h", | |
33 ] | |
34 | |
35 deps = [ | |
36 "//base", | |
37 "//gpu/command_buffer/common", | |
38 "//mojo/public/cpp/bindings", | |
39 "//mojo/services/public/interfaces/gpu", | |
40 ] | |
41 } | |
OLD | NEW |