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

Side by Side Diff: components/view_manager/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 | « components/view_manager/display_manager.cc ('k') | components/view_manager/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
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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
6 6
7 source_set("gles2") { 7 source_set("gles2") {
8 visibility = [ 8 visibility = [
9 "//components/view_manager/native_viewport:*", 9 "//components/view_manager/native_viewport:*",
10 "//mojo/runner:lib", # For android 10 "//mojo/runner:lib", # For android
11 ] 11 ]
12 12
13 sources = [ 13 sources = [
14 "command_buffer_driver.cc", 14 "command_buffer_driver.cc",
15 "command_buffer_driver.h", 15 "command_buffer_driver.h",
16 "command_buffer_impl.cc", 16 "command_buffer_impl.cc",
17 "command_buffer_impl.h", 17 "command_buffer_impl.h",
18 "command_buffer_impl_observer.h", 18 "command_buffer_impl_observer.h",
19 "gpu_impl.cc", 19 "gpu_impl.cc",
20 "gpu_impl.h", 20 "gpu_impl.h",
21 "gpu_state.cc", 21 "gpu_state.cc",
22 "gpu_state.h", 22 "gpu_state.h",
23 ] 23 ]
24 24
25 public_deps = [ 25 public_deps = [
26 ":lib", 26 ":lib",
27 ] 27 ]
28 deps = [ 28 deps = [
29 "//base", 29 "//base",
30 "//components/gpu/public/interfaces", 30 "//components/view_manager/public/interfaces",
31 "//gpu/command_buffer/service", 31 "//gpu/command_buffer/service",
32 "//mojo/converters/geometry", 32 "//mojo/converters/geometry",
33 "//third_party/mojo/src/mojo/public/cpp/bindings", 33 "//third_party/mojo/src/mojo/public/cpp/bindings",
34 "//ui/mojo/geometry:interfaces", 34 "//ui/mojo/geometry:interfaces",
35 "//ui/gfx", 35 "//ui/gfx",
36 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
37 "//ui/gl", 37 "//ui/gl",
38 ] 38 ]
39 39
40 include_dirs = [ "../.." ] 40 include_dirs = [ "../.." ]
41 } 41 }
42 42
43 source_set("lib") { 43 source_set("lib") {
44 sources = [ 44 sources = [
45 "command_buffer_type_conversions.cc", 45 "command_buffer_type_conversions.cc",
46 "command_buffer_type_conversions.h", 46 "command_buffer_type_conversions.h",
47 "mojo_buffer_backing.cc", 47 "mojo_buffer_backing.cc",
48 "mojo_buffer_backing.h", 48 "mojo_buffer_backing.h",
49 ] 49 ]
50 50
51 deps = [ 51 deps = [
52 "//base", 52 "//base",
53 "//components/gpu/public/interfaces", 53 "//components/view_manager/public/interfaces",
54 "//gpu/command_buffer/common", 54 "//gpu/command_buffer/common",
55 "//third_party/mojo/src/mojo/public/cpp/bindings", 55 "//third_party/mojo/src/mojo/public/cpp/bindings",
56 "//third_party/mojo/src/mojo/public/cpp/system", 56 "//third_party/mojo/src/mojo/public/cpp/system",
57 ] 57 ]
58 58
59 include_dirs = [ "../.." ] 59 include_dirs = [ "../.." ]
60 } 60 }
OLDNEW
« no previous file with comments | « components/view_manager/display_manager.cc ('k') | components/view_manager/gles2/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698