Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(929)

Side by Side Diff: mojo/services/gles2/BUILD.gn

Issue 769173002: Move native_viewport and gles2 service impls to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/gles2/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 source_set("gles2") {
8 sources = [
9 "command_buffer_driver.cc",
10 "command_buffer_driver.h",
11 "command_buffer_impl.cc",
12 "command_buffer_impl.h",
13 "gpu_impl.cc",
14 "gpu_impl.h",
15 ]
16
17 public_deps = [ ":lib" ]
18 deps = [
19 "//base",
20 "//gpu/command_buffer/service",
21 "//mojo/converters/geometry",
22 "//mojo/public/cpp/bindings",
23 "//mojo/services/public/interfaces/geometry",
24 "//mojo/services/public/interfaces/gpu",
25 "//ui/gfx",
26 "//ui/gfx/geometry",
27 "//ui/gl",
28 ]
29 }
30
31 source_set("lib") {
32 sources = [
33 "command_buffer_type_conversions.cc",
34 "command_buffer_type_conversions.h",
35 "mojo_buffer_backing.cc",
36 "mojo_buffer_backing.h",
37 ]
38
39 deps = [
40 "//base",
41 "//gpu/command_buffer/common",
42 "//mojo/public/cpp/bindings",
43 "//mojo/public/cpp/system",
44 "//mojo/services/public/interfaces/gpu",
45 ]
46 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/gles2/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698