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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "gles2_cmd_validation.h", | 60 "gles2_cmd_validation.h", |
61 "gles2_cmd_validation_autogen.h", | 61 "gles2_cmd_validation_autogen.h", |
62 "gles2_cmd_validation_implementation_autogen.h", | 62 "gles2_cmd_validation_implementation_autogen.h", |
63 "gpu_scheduler.cc", | 63 "gpu_scheduler.cc", |
64 "gpu_scheduler.h", | 64 "gpu_scheduler.h", |
65 "gpu_scheduler_mock.h", | 65 "gpu_scheduler_mock.h", |
66 "gpu_state_tracer.cc", | 66 "gpu_state_tracer.cc", |
67 "gpu_state_tracer.h", | 67 "gpu_state_tracer.h", |
68 "gpu_switches.cc", | 68 "gpu_switches.cc", |
69 "gpu_switches.h", | 69 "gpu_switches.h", |
70 "gpu_timing.cc", | |
71 "gpu_timing.h", | |
72 "gpu_tracer.cc", | 70 "gpu_tracer.cc", |
73 "gpu_tracer.h", | 71 "gpu_tracer.h", |
74 "id_manager.cc", | 72 "id_manager.cc", |
75 "id_manager.h", | 73 "id_manager.h", |
76 "image_factory.cc", | 74 "image_factory.cc", |
77 "image_factory.h", | 75 "image_factory.h", |
78 "image_manager.cc", | 76 "image_manager.cc", |
79 "image_manager.h", | 77 "image_manager.h", |
80 "in_process_command_buffer.cc", | 78 "in_process_command_buffer.cc", |
81 "in_process_command_buffer.h", | 79 "in_process_command_buffer.h", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 configs -= [ "//build/config/compiler:optimize" ] | 159 configs -= [ "//build/config/compiler:optimize" ] |
162 configs += [ "//build/config/compiler:optimize_max" ] | 160 configs += [ "//build/config/compiler:optimize_max" ] |
163 } | 161 } |
164 } | 162 } |
165 | 163 |
166 proto_library("disk_cache_proto") { | 164 proto_library("disk_cache_proto") { |
167 sources = [ | 165 sources = [ |
168 "disk_cache_proto.proto", | 166 "disk_cache_proto.proto", |
169 ] | 167 ] |
170 } | 168 } |
OLD | NEW |