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

Side by Side Diff: gpu/command_buffer/client/BUILD.gn

Issue 603273003: Prevent static mojo builds from pulling //ui/gl into mojo_shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | mojo/shell/BUILD.gn » ('j') | mojo/shell/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 source_set("client") { 5 source_set("client") {
6 sources = [ 6 sources = [
7 "cmd_buffer_helper.cc", 7 "cmd_buffer_helper.cc",
8 "cmd_buffer_helper.h", 8 "cmd_buffer_helper.h",
9 "fenced_allocator.cc", 9 "fenced_allocator.cc",
10 "fenced_allocator.h", 10 "fenced_allocator.h",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
117 cflags = [ "/wd4267" ] # size_t to int truncation. 117 cflags = [ "/wd4267" ] # size_t to int truncation.
118 } 118 }
119 119
120 deps = [ 120 deps = [
121 ":gles2_cmd_helper", 121 ":gles2_cmd_helper",
122 ":gles2_interface", 122 ":gles2_interface",
123 "//base", 123 "//base",
124 "//gpu/command_buffer/common", 124 "//gpu/command_buffer/common",
125 "//ui/gfx/geometry", 125 "//ui/gfx/geometry",
126 "//ui/gl",
jamesr 2014/09/25 20:09:44 this isn't quite correct - gles2_implementation.cc
DaveMoore 2014/09/26 18:29:22 I created a new kEnableGPUServiceLoggingGPU flag i
127 ] 126 ]
128 } 127 }
129 128
130 # Library emulates GLES2 using command_buffers. 129 # Library emulates GLES2 using command_buffers.
131 component("gles2_implementation_client_side_arrays") { 130 component("gles2_implementation_client_side_arrays") {
132 sources = gles2_implementation_source_files 131 sources = gles2_implementation_source_files
133 132
134 defines = [ 133 defines = [
135 "GLES2_IMPL_IMPLEMENTATION", 134 "GLES2_IMPL_IMPLEMENTATION",
136 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1", 135 "GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 182
184 deps = [ 183 deps = [
185 ":client", 184 ":client",
186 ":gles2_interface", 185 ":gles2_interface",
187 "//base", 186 "//base",
188 "//base/third_party/dynamic_annotations", 187 "//base/third_party/dynamic_annotations",
189 "//gpu/command_buffer/common", 188 "//gpu/command_buffer/common",
190 ] 189 ]
191 } 190 }
192 191
OLDNEW
« no previous file with comments | « no previous file | mojo/shell/BUILD.gn » ('j') | mojo/shell/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698