| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "gpu_tracer.cc", | 68 "gpu_tracer.cc", |
| 69 "gpu_tracer.h", | 69 "gpu_tracer.h", |
| 70 "id_manager.h", | 70 "id_manager.h", |
| 71 "id_manager.cc", | 71 "id_manager.cc", |
| 72 "image_manager.cc", | 72 "image_manager.cc", |
| 73 "image_manager.h", | 73 "image_manager.h", |
| 74 "in_process_command_buffer.cc", | 74 "in_process_command_buffer.cc", |
| 75 "in_process_command_buffer.h", | 75 "in_process_command_buffer.h", |
| 76 "logger.cc", | 76 "logger.cc", |
| 77 "logger.h", | 77 "logger.h", |
| 78 "mailbox_manager.cc", | |
| 79 "mailbox_manager.h", | 78 "mailbox_manager.h", |
| 80 "mailbox_synchronizer.cc", | 79 "mailbox_manager_impl.cc", |
| 81 "mailbox_synchronizer.h", | 80 "mailbox_manager_impl.h", |
| 81 "mailbox_manager_sync.cc", |
| 82 "mailbox_manager_sync.h", |
| 82 "memory_program_cache.h", | 83 "memory_program_cache.h", |
| 83 "memory_program_cache.cc", | 84 "memory_program_cache.cc", |
| 84 "mocks.h", | 85 "mocks.h", |
| 85 "program_manager.h", | 86 "program_manager.h", |
| 86 "program_manager.cc", | 87 "program_manager.cc", |
| 87 "query_manager.h", | 88 "query_manager.h", |
| 88 "query_manager.cc", | 89 "query_manager.cc", |
| 89 "renderbuffer_manager.h", | 90 "renderbuffer_manager.h", |
| 90 "renderbuffer_manager.cc", | 91 "renderbuffer_manager.cc", |
| 91 "program_cache.h", | 92 "program_cache.h", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 if (is_android && !is_debug) { | 151 if (is_android && !is_debug) { |
| 151 # On Android optimize more since this component can be a bottleneck. | 152 # On Android optimize more since this component can be a bottleneck. |
| 152 configs -= [ "//build/config/compiler:optimize" ] | 153 configs -= [ "//build/config/compiler:optimize" ] |
| 153 configs += [ "//build/config/compiler:optimize_max" ] | 154 configs += [ "//build/config/compiler:optimize_max" ] |
| 154 } | 155 } |
| 155 } | 156 } |
| 156 | 157 |
| 157 proto_library("disk_cache_proto") { | 158 proto_library("disk_cache_proto") { |
| 158 sources = [ "disk_cache_proto.proto" ] | 159 sources = [ "disk_cache_proto.proto" ] |
| 159 } | 160 } |
| OLD | NEW |