| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "gpu_switches.cc", | 90 "gpu_switches.cc", |
| 91 "gpu_switches.h", | 91 "gpu_switches.h", |
| 92 "gpu_tracer.cc", | 92 "gpu_tracer.cc", |
| 93 "gpu_tracer.h", | 93 "gpu_tracer.h", |
| 94 "id_manager.cc", | 94 "id_manager.cc", |
| 95 "id_manager.h", | 95 "id_manager.h", |
| 96 "image_factory.cc", | 96 "image_factory.cc", |
| 97 "image_factory.h", | 97 "image_factory.h", |
| 98 "image_manager.cc", | 98 "image_manager.cc", |
| 99 "image_manager.h", | 99 "image_manager.h", |
| 100 "in_process_command_buffer.cc", | |
| 101 "in_process_command_buffer.h", | |
| 102 "indexed_buffer_binding_host.cc", | 100 "indexed_buffer_binding_host.cc", |
| 103 "indexed_buffer_binding_host.h", | 101 "indexed_buffer_binding_host.h", |
| 104 "logger.cc", | 102 "logger.cc", |
| 105 "logger.h", | 103 "logger.h", |
| 106 "mailbox_manager.cc", | 104 "mailbox_manager.cc", |
| 107 "mailbox_manager.h", | 105 "mailbox_manager.h", |
| 108 "mailbox_manager_impl.cc", | 106 "mailbox_manager_impl.cc", |
| 109 "mailbox_manager_impl.h", | 107 "mailbox_manager_impl.h", |
| 110 "mailbox_manager_sync.cc", | 108 "mailbox_manager_sync.cc", |
| 111 "mailbox_manager_sync.h", | 109 "mailbox_manager_sync.h", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 configs -= [ "//build/config/compiler:default_optimization" ] | 191 configs -= [ "//build/config/compiler:default_optimization" ] |
| 194 configs += [ "//build/config/compiler:optimize_max" ] | 192 configs += [ "//build/config/compiler:optimize_max" ] |
| 195 } | 193 } |
| 196 } | 194 } |
| 197 | 195 |
| 198 proto_library("disk_cache_proto") { | 196 proto_library("disk_cache_proto") { |
| 199 sources = [ | 197 sources = [ |
| 200 "disk_cache_proto.proto", | 198 "disk_cache_proto.proto", |
| 201 ] | 199 ] |
| 202 } | 200 } |
| OLD | NEW |