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

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

Issue 1848033006: Mus version of GLHelper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed deps Created 4 years, 8 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/mus/gles2/gl_helper.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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("gles2") { 7 source_set("gles2") {
8 visibility = [ 8 visibility = [
9 "//components/mus:*", 9 "//components/mus:*",
10 "//components/mus/ws:*", 10 "//components/mus/ws:*",
11 "//components/mus/surfaces:*", 11 "//components/mus/surfaces:*",
12 "//mojo/shell/standalone:lib", # For android 12 "//mojo/shell/standalone:lib", # For android
13 ] 13 ]
14 14
15 sources = [ 15 sources = [
16 "command_buffer_driver.cc", 16 "command_buffer_driver.cc",
17 "command_buffer_driver.h", 17 "command_buffer_driver.h",
18 "command_buffer_driver_manager.cc", 18 "command_buffer_driver_manager.cc",
19 "command_buffer_driver_manager.h", 19 "command_buffer_driver_manager.h",
20 "command_buffer_impl.cc", 20 "command_buffer_impl.cc",
21 "command_buffer_impl.h", 21 "command_buffer_impl.h",
22 "command_buffer_local.cc", 22 "command_buffer_local.cc",
23 "command_buffer_local.h", 23 "command_buffer_local.h",
24 "command_buffer_local_client.h", 24 "command_buffer_local_client.h",
25 "command_buffer_task_runner.cc", 25 "command_buffer_task_runner.cc",
26 "command_buffer_task_runner.h", 26 "command_buffer_task_runner.h",
27 "gl_helper.cc",
28 "gl_helper.h",
27 "gl_surface_adapter.cc", 29 "gl_surface_adapter.cc",
28 "gl_surface_adapter.h", 30 "gl_surface_adapter.h",
29 "gpu_impl.cc", 31 "gpu_impl.cc",
30 "gpu_impl.h", 32 "gpu_impl.h",
31 "gpu_memory_tracker.cc", 33 "gpu_memory_tracker.cc",
32 "gpu_memory_tracker.h", 34 "gpu_memory_tracker.h",
33 "gpu_state.cc", 35 "gpu_state.cc",
34 "gpu_state.h", 36 "gpu_state.h",
35 ] 37 ]
36 38
37 public_deps = [ 39 public_deps = [
38 ":lib", 40 ":lib",
39 ] 41 ]
40 deps = [ 42 deps = [
41 "//base", 43 "//base",
42 "//components/mus/public/interfaces", 44 "//components/mus/public/interfaces",
43 "//gpu/command_buffer/client", 45 "//gpu/command_buffer/client",
46 "//gpu/command_buffer/client:gles2_interface",
44 "//gpu/command_buffer/common:gles2_utils", 47 "//gpu/command_buffer/common:gles2_utils",
45 "//gpu/command_buffer/service", 48 "//gpu/command_buffer/service",
46 "//gpu/config:config", 49 "//gpu/config:config",
47 "//mojo/converters/geometry", 50 "//mojo/converters/geometry",
48 "//mojo/public/cpp/bindings", 51 "//mojo/public/cpp/bindings",
49 "//ui/gfx", 52 "//ui/gfx",
50 "//ui/gfx/geometry", 53 "//ui/gfx/geometry",
51 "//ui/gl", 54 "//ui/gl",
52 "//ui/mojo/geometry:interfaces", 55 "//ui/mojo/geometry:interfaces",
53 ] 56 ]
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "//gpu/command_buffer/common", 90 "//gpu/command_buffer/common",
88 "//gpu/config:config", 91 "//gpu/config:config",
89 "//mojo/public/cpp/bindings", 92 "//mojo/public/cpp/bindings",
90 "//mojo/public/cpp/system", 93 "//mojo/public/cpp/system",
91 "//ui/gfx", 94 "//ui/gfx",
92 "//ui/gfx/geometry", 95 "//ui/gfx/geometry",
93 ] 96 ]
94 97
95 include_dirs = [ "../.." ] 98 include_dirs = [ "../.." ]
96 } 99 }
OLDNEW
« no previous file with comments | « no previous file | components/mus/gles2/gl_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698