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

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

Issue 659903002: Add subscribeUniform extension pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed unitialized variable 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 source_set("service") { 8 source_set("service") {
9 sources = [ 9 sources = [
10 "async_pixel_transfer_delegate.cc", 10 "async_pixel_transfer_delegate.cc",
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "shader_translator_cache.h", 100 "shader_translator_cache.h",
101 "shader_translator_cache.cc", 101 "shader_translator_cache.cc",
102 "stream_texture_manager_in_process_android.h", 102 "stream_texture_manager_in_process_android.h",
103 "stream_texture_manager_in_process_android.cc", 103 "stream_texture_manager_in_process_android.cc",
104 "texture_definition.h", 104 "texture_definition.h",
105 "texture_definition.cc", 105 "texture_definition.cc",
106 "texture_manager.h", 106 "texture_manager.h",
107 "texture_manager.cc", 107 "texture_manager.cc",
108 "transfer_buffer_manager.cc", 108 "transfer_buffer_manager.cc",
109 "transfer_buffer_manager.h", 109 "transfer_buffer_manager.h",
110 "valuebuffer_manager.h",
111 "valuebuffer_manager.cc",
110 "vertex_array_manager.h", 112 "vertex_array_manager.h",
111 "vertex_array_manager.cc", 113 "vertex_array_manager.cc",
112 "vertex_attrib_manager.h", 114 "vertex_attrib_manager.h",
113 "vertex_attrib_manager.cc", 115 "vertex_attrib_manager.cc",
114 ] 116 ]
115 117
116 defines = [ "GPU_IMPLEMENTATION" ] 118 defines = [ "GPU_IMPLEMENTATION" ]
117 119
118 configs += [ 120 configs += [
119 "//third_party/khronos:khronos_headers", 121 "//third_party/khronos:khronos_headers",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 if (is_android && !is_debug) { 155 if (is_android && !is_debug) {
154 # On Android optimize more since this component can be a bottleneck. 156 # On Android optimize more since this component can be a bottleneck.
155 configs -= [ "//build/config/compiler:optimize" ] 157 configs -= [ "//build/config/compiler:optimize" ]
156 configs += [ "//build/config/compiler:optimize_max" ] 158 configs += [ "//build/config/compiler:optimize_max" ]
157 } 159 }
158 } 160 }
159 161
160 proto_library("disk_cache_proto") { 162 proto_library("disk_cache_proto") {
161 sources = [ "disk_cache_proto.proto" ] 163 sources = [ "disk_cache_proto.proto" ]
162 } 164 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils_implementation_autogen.h ('k') | gpu/command_buffer/service/context_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698