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

Side by Side Diff: gpu/BUILD.gn

Issue 702493002: PepperGL: Enable client side arrays support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 6 years, 1 month 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
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 # GYP-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
11 # gpu.gyp:command_buffer_service => //gpu/command_buffer/service 11 # gpu.gyp:command_buffer_service => //gpu/command_buffer/service
12 12
13 # gpu/gpu.gyp:gl_in_process_context => 13 # gpu/gpu.gyp:gl_in_process_context =>
14 # //gpu/command_buffer/client:gl_in_process_context 14 # //gpu/command_buffer/client:gl_in_process_context
15 # 15 #
16 # gpu.gyp:gles2_cmd_helper => //gpu/command_buffer/client:gles2_cmd_helper 16 # gpu.gyp:gles2_cmd_helper => //gpu/command_buffer/client:gles2_cmd_helper
17 # 17 #
18 # gpu.gyp:gles2_c_lib => //gpu/command_buffer/client:gles2_c_lib 18 # gpu.gyp:gles2_c_lib => //gpu/command_buffer/client:gles2_c_lib
19 # 19 #
20 # gpu.gyp:gles2_implementation => 20 # gpu.gyp:gles2_implementation =>
21 # //gpu/command_buffer/client:gles2_implementation 21 # //gpu/command_buffer/client:gles2_implementation
22
23 # gpu.gyp:gles2_implementation_client_side_arrays =>
24 # //gpu/command_buffer/client:gles2_implementation_client_side_arrays
25 # 22 #
26 # gpu.gyp:gpu_config => //gpu/config 23 # gpu.gyp:gpu_config => //gpu/config
27 # 24 #
28 # gpu.gyp:gpu_ipc => //gpu/ipc 25 # gpu.gyp:gpu_ipc => //gpu/ipc
29 # 26 #
30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto 27 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto
31 # 28 #
32 # command_buffer/command_buffer.gyp:gles2_utils => 29 # command_buffer/command_buffer.gyp:gles2_utils =>
33 # //gpu/command_buffer/common 30 # //gpu/command_buffer/common
34 # (Merged in to here because the separate file exists in GYP only to break 31 # (Merged in to here because the separate file exists in GYP only to break
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 "//base/third_party/dynamic_annotations", 104 "//base/third_party/dynamic_annotations",
108 "//testing/gmock", 105 "//testing/gmock",
109 "//testing/gtest", 106 "//testing/gtest",
110 "//third_party/angle:translator", 107 "//third_party/angle:translator",
111 "//ui/gfx", 108 "//ui/gfx",
112 "//ui/gfx:test_support", 109 "//ui/gfx:test_support",
113 "//ui/gfx/geometry", 110 "//ui/gfx/geometry",
114 "//ui/gl", 111 "//ui/gl",
115 "//gpu/command_buffer/common:gles2_utils", 112 "//gpu/command_buffer/common:gles2_utils",
116 "//gpu/command_buffer/client:gles2_c_lib", 113 "//gpu/command_buffer/client:gles2_c_lib",
117 "//gpu/command_buffer/client:gles2_implementation_client_side_arrays", 114 "//gpu/command_buffer/client:gles2_implementation",
118 ] 115 ]
119 116
120 libs = [] 117 libs = []
121 118
122 if (is_android) { 119 if (is_android) {
123 deps += [ 120 deps += [
124 "//testing/android:native_test_native_code", 121 "//testing/android:native_test_native_code",
125 ] 122 ]
126 libs += [ "android" ] 123 libs += [ "android" ]
127 } 124 }
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 "//base/third_party/dynamic_annotations", 231 "//base/third_party/dynamic_annotations",
235 "//testing/gmock", 232 "//testing/gmock",
236 "//testing/gtest", 233 "//testing/gtest",
237 "//third_party/angle:translator", 234 "//third_party/angle:translator",
238 "//ui/gfx", 235 "//ui/gfx",
239 "//ui/gfx:test_support", 236 "//ui/gfx:test_support",
240 "//ui/gfx/geometry", 237 "//ui/gfx/geometry",
241 "//ui/gl", 238 "//ui/gl",
242 "//gpu/command_buffer/common:gles2_utils", 239 "//gpu/command_buffer/common:gles2_utils",
243 "//gpu/command_buffer/client:gles2_c_lib", 240 "//gpu/command_buffer/client:gles2_c_lib",
244 "//gpu/command_buffer/client:gles2_implementation_client_side_arrays", 241 "//gpu/command_buffer/client:gles2_implementation",
245 ] 242 ]
246 } 243 }
247 244
248 test("angle_unittests") { 245 test("angle_unittests") {
249 sources = [ 246 sources = [
250 "angle_unittest_main.cc", 247 "angle_unittest_main.cc",
251 ] 248 ]
252 249
253 deps = [ 250 deps = [
254 "//base", 251 "//base",
255 "//base/third_party/dynamic_annotations", 252 "//base/third_party/dynamic_annotations",
256 "//testing/gmock", 253 "//testing/gmock",
257 "//testing/gtest", 254 "//testing/gtest",
258 "//third_party/angle:translator_static", 255 "//third_party/angle:translator_static",
259 ] 256 ]
260 } 257 }
OLDNEW
« no previous file with comments | « content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc ('k') | gpu/command_buffer/client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698