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

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

Issue 2119963002: Move mus to //services/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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/mus/demo/mus_demo.cc ('k') | components/mus/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("//build/config/ui.gni")
6
7 source_set("gles2") {
8 visibility = [
9 "//components/mus:*",
10 "//components/mus/ws:*",
11 "//components/mus/surfaces:*",
12 "//services/shell/standalone:lib", # For android
13 ]
14
15 sources = [
16 "command_buffer_driver.cc",
17 "command_buffer_driver.h",
18 "command_buffer_driver_manager.cc",
19 "command_buffer_driver_manager.h",
20 "command_buffer_impl.cc",
21 "command_buffer_impl.h",
22 "command_buffer_local.cc",
23 "command_buffer_local.h",
24 "command_buffer_local_client.h",
25 "command_buffer_task_runner.cc",
26 "command_buffer_task_runner.h",
27 "gl_surface_adapter.cc",
28 "gl_surface_adapter.h",
29 "gpu_impl.cc",
30 "gpu_impl.h",
31 "gpu_memory_tracker.cc",
32 "gpu_memory_tracker.h",
33 "gpu_state.cc",
34 "gpu_state.h",
35 ]
36
37 public_deps = [
38 ":lib",
39 ]
40 deps = [
41 "//base",
42 "//components/mus/common:mus_common",
43 "//components/mus/public/interfaces",
44 "//gpu/command_buffer/client",
45 "//gpu/command_buffer/client:gles2_interface",
46 "//gpu/command_buffer/common:gles2_utils",
47 "//gpu/command_buffer/service",
48 "//gpu/config:config",
49 "//mojo/public/cpp/bindings",
50 "//mojo/public/cpp/system",
51 "//ui/gfx",
52 "//ui/gfx/geometry",
53 "//ui/gfx/geometry/mojo",
54 "//ui/gl",
55 "//ui/gl/init",
56 ]
57
58 if (use_ozone) {
59 deps += [ "//ui/ozone:ozone" ]
60 sources += [
61 "ozone_gpu_memory_buffer.cc",
62 "ozone_gpu_memory_buffer.h",
63 ]
64 }
65
66 include_dirs = [ "../.." ]
67 }
68
69 source_set("lib") {
70 sources = [
71 "raster_thread_helper.cc",
72 "raster_thread_helper.h",
73 ]
74
75 deps = [
76 "//base",
77 "//cc",
78 "//components/mus/public/interfaces",
79 "//gpu/command_buffer/client",
80 "//gpu/command_buffer/common",
81 "//gpu/config:config",
82 "//mojo/public/cpp/bindings",
83 "//mojo/public/cpp/system",
84 "//ui/gfx",
85 "//ui/gfx/geometry",
86 ]
87
88 include_dirs = [ "../.." ]
89 }
OLDNEW
« no previous file with comments | « components/mus/demo/mus_demo.cc ('k') | components/mus/gles2/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698