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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "program_cache.h", | 96 "program_cache.h", |
97 "program_cache.cc", | 97 "program_cache.cc", |
98 "shader_manager.h", | 98 "shader_manager.h", |
99 "shader_manager.cc", | 99 "shader_manager.cc", |
100 "shader_translator.h", | 100 "shader_translator.h", |
101 "shader_translator.cc", | 101 "shader_translator.cc", |
102 "shader_translator_cache.h", | 102 "shader_translator_cache.h", |
103 "shader_translator_cache.cc", | 103 "shader_translator_cache.cc", |
104 "stream_texture_manager_in_process_android.h", | 104 "stream_texture_manager_in_process_android.h", |
105 "stream_texture_manager_in_process_android.cc", | 105 "stream_texture_manager_in_process_android.cc", |
| 106 "sync_point_manager.h", |
| 107 "sync_point_manager.cc", |
106 "texture_definition.h", | 108 "texture_definition.h", |
107 "texture_definition.cc", | 109 "texture_definition.cc", |
108 "texture_manager.h", | 110 "texture_manager.h", |
109 "texture_manager.cc", | 111 "texture_manager.cc", |
110 "transfer_buffer_manager.cc", | 112 "transfer_buffer_manager.cc", |
111 "transfer_buffer_manager.h", | 113 "transfer_buffer_manager.h", |
112 "valuebuffer_manager.h", | 114 "valuebuffer_manager.h", |
113 "valuebuffer_manager.cc", | 115 "valuebuffer_manager.cc", |
114 "vertex_array_manager.h", | 116 "vertex_array_manager.h", |
115 "vertex_array_manager.cc", | 117 "vertex_array_manager.cc", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 if (is_android && !is_debug) { | 159 if (is_android && !is_debug) { |
158 # On Android optimize more since this component can be a bottleneck. | 160 # On Android optimize more since this component can be a bottleneck. |
159 configs -= [ "//build/config/compiler:optimize" ] | 161 configs -= [ "//build/config/compiler:optimize" ] |
160 configs += [ "//build/config/compiler:optimize_max" ] | 162 configs += [ "//build/config/compiler:optimize_max" ] |
161 } | 163 } |
162 } | 164 } |
163 | 165 |
164 proto_library("disk_cache_proto") { | 166 proto_library("disk_cache_proto") { |
165 sources = [ "disk_cache_proto.proto" ] | 167 sources = [ "disk_cache_proto.proto" ] |
166 } | 168 } |
OLD | NEW |