OLD | NEW |
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "shader_translator_cache.h", | 97 "shader_translator_cache.h", |
98 "shader_translator_cache.cc", | 98 "shader_translator_cache.cc", |
99 "stream_texture_manager_in_process_android.h", | 99 "stream_texture_manager_in_process_android.h", |
100 "stream_texture_manager_in_process_android.cc", | 100 "stream_texture_manager_in_process_android.cc", |
101 "texture_definition.h", | 101 "texture_definition.h", |
102 "texture_definition.cc", | 102 "texture_definition.cc", |
103 "texture_manager.h", | 103 "texture_manager.h", |
104 "texture_manager.cc", | 104 "texture_manager.cc", |
105 "transfer_buffer_manager.cc", | 105 "transfer_buffer_manager.cc", |
106 "transfer_buffer_manager.h", | 106 "transfer_buffer_manager.h", |
| 107 "uniform_subscription_manager.h", |
| 108 "uniform_subscription_manager.cc", |
107 "vertex_array_manager.h", | 109 "vertex_array_manager.h", |
108 "vertex_array_manager.cc", | 110 "vertex_array_manager.cc", |
109 "vertex_attrib_manager.h", | 111 "vertex_attrib_manager.h", |
110 "vertex_attrib_manager.cc", | 112 "vertex_attrib_manager.cc", |
111 ] | 113 ] |
112 | 114 |
113 defines = [ "GPU_IMPLEMENTATION" ] | 115 defines = [ "GPU_IMPLEMENTATION" ] |
114 | 116 |
115 configs += [ | 117 configs += [ |
116 "//third_party/khronos:khronos_headers", | 118 "//third_party/khronos:khronos_headers", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 if (is_android && !is_debug) { | 152 if (is_android && !is_debug) { |
151 # On Android optimize more since this component can be a bottleneck. | 153 # On Android optimize more since this component can be a bottleneck. |
152 configs -= [ "//build/config/compiler:optimize" ] | 154 configs -= [ "//build/config/compiler:optimize" ] |
153 configs += [ "//build/config/compiler:optimize_max" ] | 155 configs += [ "//build/config/compiler:optimize_max" ] |
154 } | 156 } |
155 } | 157 } |
156 | 158 |
157 proto_library("disk_cache_proto") { | 159 proto_library("disk_cache_proto") { |
158 sources = [ "disk_cache_proto.proto" ] | 160 sources = [ "disk_cache_proto.proto" ] |
159 } | 161 } |
OLD | NEW |