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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "gpu_scheduler.h", | 62 "gpu_scheduler.h", |
63 "gpu_scheduler_mock.h", | 63 "gpu_scheduler_mock.h", |
64 "gpu_state_tracer.cc", | 64 "gpu_state_tracer.cc", |
65 "gpu_state_tracer.h", | 65 "gpu_state_tracer.h", |
66 "gpu_switches.cc", | 66 "gpu_switches.cc", |
67 "gpu_switches.h", | 67 "gpu_switches.h", |
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_factory.cc", |
| 73 "image_factory.h", |
72 "image_manager.cc", | 74 "image_manager.cc", |
73 "image_manager.h", | 75 "image_manager.h", |
74 "in_process_command_buffer.cc", | 76 "in_process_command_buffer.cc", |
75 "in_process_command_buffer.h", | 77 "in_process_command_buffer.h", |
76 "logger.cc", | 78 "logger.cc", |
77 "logger.h", | 79 "logger.h", |
78 "mailbox_manager.h", | 80 "mailbox_manager.h", |
79 "mailbox_manager_impl.cc", | 81 "mailbox_manager_impl.cc", |
80 "mailbox_manager_impl.h", | 82 "mailbox_manager_impl.h", |
81 "mailbox_manager_sync.cc", | 83 "mailbox_manager_sync.cc", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 if (is_android && !is_debug) { | 153 if (is_android && !is_debug) { |
152 # On Android optimize more since this component can be a bottleneck. | 154 # On Android optimize more since this component can be a bottleneck. |
153 configs -= [ "//build/config/compiler:optimize" ] | 155 configs -= [ "//build/config/compiler:optimize" ] |
154 configs += [ "//build/config/compiler:optimize_max" ] | 156 configs += [ "//build/config/compiler:optimize_max" ] |
155 } | 157 } |
156 } | 158 } |
157 | 159 |
158 proto_library("disk_cache_proto") { | 160 proto_library("disk_cache_proto") { |
159 sources = [ "disk_cache_proto.proto" ] | 161 sources = [ "disk_cache_proto.proto" ] |
160 } | 162 } |
OLD | NEW |