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

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

Issue 790213002: Restructure public side of geometry service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Nits 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/tools/roll/rev_sdk.py ('k') | services/gles2/gpu_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 source_set("gles2") { 7 source_set("gles2") {
8 sources = [ 8 sources = [
9 "command_buffer_driver.cc", 9 "command_buffer_driver.cc",
10 "command_buffer_driver.h", 10 "command_buffer_driver.h",
11 "command_buffer_impl.cc", 11 "command_buffer_impl.cc",
12 "command_buffer_impl.h", 12 "command_buffer_impl.h",
13 "gpu_impl.cc", 13 "gpu_impl.cc",
14 "gpu_impl.h", 14 "gpu_impl.h",
15 ] 15 ]
16 16
17 public_deps = [ 17 public_deps = [
18 ":lib", 18 ":lib",
19 ] 19 ]
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//gpu/command_buffer/service", 22 "//gpu/command_buffer/service",
23 "//mojo/converters/geometry", 23 "//mojo/converters/geometry",
24 "//mojo/public/cpp/bindings", 24 "//mojo/public/cpp/bindings",
25 "//mojo/services/public/interfaces/geometry", 25 "//mojo/services/geometry/public/interfaces",
26 "//mojo/services/public/interfaces/gpu", 26 "//mojo/services/public/interfaces/gpu",
27 "//ui/gfx", 27 "//ui/gfx",
28 "//ui/gfx/geometry", 28 "//ui/gfx/geometry",
29 "//ui/gl", 29 "//ui/gl",
30 ] 30 ]
31 } 31 }
32 32
33 source_set("lib") { 33 source_set("lib") {
34 sources = [ 34 sources = [
35 "command_buffer_type_conversions.cc", 35 "command_buffer_type_conversions.cc",
36 "command_buffer_type_conversions.h", 36 "command_buffer_type_conversions.h",
37 "mojo_buffer_backing.cc", 37 "mojo_buffer_backing.cc",
38 "mojo_buffer_backing.h", 38 "mojo_buffer_backing.h",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//gpu/command_buffer/common", 43 "//gpu/command_buffer/common",
44 "//mojo/public/cpp/bindings", 44 "//mojo/public/cpp/bindings",
45 "//mojo/public/cpp/system", 45 "//mojo/public/cpp/system",
46 "//mojo/services/public/interfaces/gpu", 46 "//mojo/services/public/interfaces/gpu",
47 ] 47 ]
48 } 48 }
OLDNEW
« no previous file with comments | « mojo/tools/roll/rev_sdk.py ('k') | services/gles2/gpu_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698