| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "shader_translator_cache.cc", | 110 "shader_translator_cache.cc", |
| 111 "shader_translator_cache.h", | 111 "shader_translator_cache.h", |
| 112 "sync_point_manager.cc", | 112 "sync_point_manager.cc", |
| 113 "sync_point_manager.h", | 113 "sync_point_manager.h", |
| 114 "texture_definition.cc", | 114 "texture_definition.cc", |
| 115 "texture_definition.h", | 115 "texture_definition.h", |
| 116 "texture_manager.cc", | 116 "texture_manager.cc", |
| 117 "texture_manager.h", | 117 "texture_manager.h", |
| 118 "transfer_buffer_manager.cc", | 118 "transfer_buffer_manager.cc", |
| 119 "transfer_buffer_manager.h", | 119 "transfer_buffer_manager.h", |
| 120 "valuebuffer_manager.cc", | |
| 121 "valuebuffer_manager.h", | |
| 122 "vertex_array_manager.cc", | 120 "vertex_array_manager.cc", |
| 123 "vertex_array_manager.h", | 121 "vertex_array_manager.h", |
| 124 "vertex_attrib_manager.cc", | 122 "vertex_attrib_manager.cc", |
| 125 "vertex_attrib_manager.h", | 123 "vertex_attrib_manager.h", |
| 126 ] | 124 ] |
| 127 | 125 |
| 128 configs += [ | 126 configs += [ |
| 129 "//build/config:precompiled_headers", | 127 "//build/config:precompiled_headers", |
| 130 "//gpu:gpu_implementation", | 128 "//gpu:gpu_implementation", |
| 131 "//third_party/khronos:khronos_headers", | 129 "//third_party/khronos:khronos_headers", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 configs -= [ "//build/config/compiler:default_optimization" ] | 166 configs -= [ "//build/config/compiler:default_optimization" ] |
| 169 configs += [ "//build/config/compiler:optimize_max" ] | 167 configs += [ "//build/config/compiler:optimize_max" ] |
| 170 } | 168 } |
| 171 } | 169 } |
| 172 | 170 |
| 173 proto_library("disk_cache_proto") { | 171 proto_library("disk_cache_proto") { |
| 174 sources = [ | 172 sources = [ |
| 175 "disk_cache_proto.proto", | 173 "disk_cache_proto.proto", |
| 176 ] | 174 ] |
| 177 } | 175 } |
| OLD | NEW |