| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "gpu_tracer.cc", | 74 "gpu_tracer.cc", |
| 75 "gpu_tracer.h", | 75 "gpu_tracer.h", |
| 76 "id_manager.cc", | 76 "id_manager.cc", |
| 77 "id_manager.h", | 77 "id_manager.h", |
| 78 "image_factory.cc", | 78 "image_factory.cc", |
| 79 "image_factory.h", | 79 "image_factory.h", |
| 80 "image_manager.cc", | 80 "image_manager.cc", |
| 81 "image_manager.h", | 81 "image_manager.h", |
| 82 "in_process_command_buffer.cc", | 82 "in_process_command_buffer.cc", |
| 83 "in_process_command_buffer.h", | 83 "in_process_command_buffer.h", |
| 84 "indexed_buffer_binding_host.cc", |
| 85 "indexed_buffer_binding_host.h", |
| 84 "logger.cc", | 86 "logger.cc", |
| 85 "logger.h", | 87 "logger.h", |
| 86 "mailbox_manager.cc", | 88 "mailbox_manager.cc", |
| 87 "mailbox_manager.h", | 89 "mailbox_manager.h", |
| 88 "mailbox_manager_impl.cc", | 90 "mailbox_manager_impl.cc", |
| 89 "mailbox_manager_impl.h", | 91 "mailbox_manager_impl.h", |
| 90 "mailbox_manager_sync.cc", | 92 "mailbox_manager_sync.cc", |
| 91 "mailbox_manager_sync.h", | 93 "mailbox_manager_sync.h", |
| 92 "memory_program_cache.cc", | 94 "memory_program_cache.cc", |
| 93 "memory_program_cache.h", | 95 "memory_program_cache.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 110 "shader_translator_cache.cc", | 112 "shader_translator_cache.cc", |
| 111 "shader_translator_cache.h", | 113 "shader_translator_cache.h", |
| 112 "sync_point_manager.cc", | 114 "sync_point_manager.cc", |
| 113 "sync_point_manager.h", | 115 "sync_point_manager.h", |
| 114 "texture_definition.cc", | 116 "texture_definition.cc", |
| 115 "texture_definition.h", | 117 "texture_definition.h", |
| 116 "texture_manager.cc", | 118 "texture_manager.cc", |
| 117 "texture_manager.h", | 119 "texture_manager.h", |
| 118 "transfer_buffer_manager.cc", | 120 "transfer_buffer_manager.cc", |
| 119 "transfer_buffer_manager.h", | 121 "transfer_buffer_manager.h", |
| 122 "transform_feedback_manager.cc", |
| 123 "transform_feedback_manager.h", |
| 120 "vertex_array_manager.cc", | 124 "vertex_array_manager.cc", |
| 121 "vertex_array_manager.h", | 125 "vertex_array_manager.h", |
| 122 "vertex_attrib_manager.cc", | 126 "vertex_attrib_manager.cc", |
| 123 "vertex_attrib_manager.h", | 127 "vertex_attrib_manager.h", |
| 124 ] | 128 ] |
| 125 | 129 |
| 126 configs += [ | 130 configs += [ |
| 127 "//build/config:precompiled_headers", | 131 "//build/config:precompiled_headers", |
| 128 "//gpu:gpu_implementation", | 132 "//gpu:gpu_implementation", |
| 129 "//third_party/khronos:khronos_headers", | 133 "//third_party/khronos:khronos_headers", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 configs -= [ "//build/config/compiler:default_optimization" ] | 170 configs -= [ "//build/config/compiler:default_optimization" ] |
| 167 configs += [ "//build/config/compiler:optimize_max" ] | 171 configs += [ "//build/config/compiler:optimize_max" ] |
| 168 } | 172 } |
| 169 } | 173 } |
| 170 | 174 |
| 171 proto_library("disk_cache_proto") { | 175 proto_library("disk_cache_proto") { |
| 172 sources = [ | 176 sources = [ |
| 173 "disk_cache_proto.proto", | 177 "disk_cache_proto.proto", |
| 174 ] | 178 ] |
| 175 } | 179 } |
| OLD | NEW |