| 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 group("service") { | 8 group("service") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "renderbuffer_manager.cc", | 102 "renderbuffer_manager.cc", |
| 103 "renderbuffer_manager.h", | 103 "renderbuffer_manager.h", |
| 104 "sampler_manager.cc", | 104 "sampler_manager.cc", |
| 105 "sampler_manager.h", | 105 "sampler_manager.h", |
| 106 "shader_manager.cc", | 106 "shader_manager.cc", |
| 107 "shader_manager.h", | 107 "shader_manager.h", |
| 108 "shader_translator.cc", | 108 "shader_translator.cc", |
| 109 "shader_translator.h", | 109 "shader_translator.h", |
| 110 "shader_translator_cache.cc", | 110 "shader_translator_cache.cc", |
| 111 "shader_translator_cache.h", | 111 "shader_translator_cache.h", |
| 112 "stream_texture_manager_in_process_android.cc", | |
| 113 "stream_texture_manager_in_process_android.h", | |
| 114 "sync_point_manager.cc", | 112 "sync_point_manager.cc", |
| 115 "sync_point_manager.h", | 113 "sync_point_manager.h", |
| 116 "texture_definition.cc", | 114 "texture_definition.cc", |
| 117 "texture_definition.h", | 115 "texture_definition.h", |
| 118 "texture_manager.cc", | 116 "texture_manager.cc", |
| 119 "texture_manager.h", | 117 "texture_manager.h", |
| 120 "transfer_buffer_manager.cc", | 118 "transfer_buffer_manager.cc", |
| 121 "transfer_buffer_manager.h", | 119 "transfer_buffer_manager.h", |
| 122 "valuebuffer_manager.cc", | 120 "valuebuffer_manager.cc", |
| 123 "valuebuffer_manager.h", | 121 "valuebuffer_manager.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 configs -= [ "//build/config/compiler:default_optimization" ] | 168 configs -= [ "//build/config/compiler:default_optimization" ] |
| 171 configs += [ "//build/config/compiler:optimize_max" ] | 169 configs += [ "//build/config/compiler:optimize_max" ] |
| 172 } | 170 } |
| 173 } | 171 } |
| 174 | 172 |
| 175 proto_library("disk_cache_proto") { | 173 proto_library("disk_cache_proto") { |
| 176 sources = [ | 174 sources = [ |
| 177 "disk_cache_proto.proto", | 175 "disk_cache_proto.proto", |
| 178 ] | 176 ] |
| 179 } | 177 } |
| OLD | NEW |