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

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

Issue 1150093003: Move GLES2, GPU & Surfaces into the ViewManager directory. This does not merge the applications, th… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 7 months 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 | « no previous file | components/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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
6
7 source_set("gles2") {
8 visibility = [
9 "//components/view_manager/native_viewport:*",
10 "//mojo/runner:lib", # For android
11 ]
12
13 sources = [
14 "command_buffer_driver.cc",
15 "command_buffer_driver.h",
16 "command_buffer_impl.cc",
17 "command_buffer_impl.h",
18 "command_buffer_impl_observer.h",
19 "gpu_impl.cc",
20 "gpu_impl.h",
21 "gpu_state.cc",
22 "gpu_state.h",
23 ]
24
25 public_deps = [
26 ":lib",
27 ]
28 deps = [
29 "//base",
30 "//components/gpu/public/interfaces",
31 "//gpu/command_buffer/service",
32 "//mojo/converters/geometry",
33 "//third_party/mojo/src/mojo/public/cpp/bindings",
34 "//ui/mojo/geometry:interfaces",
35 "//ui/gfx",
36 "//ui/gfx/geometry",
37 "//ui/gl",
38 ]
39
40 include_dirs = [ "../.." ]
41 }
42
43 source_set("lib") {
44 sources = [
45 "command_buffer_type_conversions.cc",
46 "command_buffer_type_conversions.h",
47 "mojo_buffer_backing.cc",
48 "mojo_buffer_backing.h",
49 ]
50
51 deps = [
52 "//base",
53 "//components/gpu/public/interfaces",
54 "//gpu/command_buffer/common",
55 "//third_party/mojo/src/mojo/public/cpp/bindings",
56 "//third_party/mojo/src/mojo/public/cpp/system",
57 ]
58
59 include_dirs = [ "../.." ]
60 }
OLDNEW
« no previous file with comments | « no previous file | components/gles2/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698