| 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 "gl_utils.h", | 62 "gl_utils.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_tracer.cc", | 70 "gpu_tracer.cc", |
| 71 "gpu_tracer.h", | 71 "gpu_tracer.h", |
| 72 "gpu_timing.cc", |
| 73 "gpu_timing.h", |
| 72 "id_manager.h", | 74 "id_manager.h", |
| 73 "id_manager.cc", | 75 "id_manager.cc", |
| 74 "image_factory.cc", | 76 "image_factory.cc", |
| 75 "image_factory.h", | 77 "image_factory.h", |
| 76 "image_manager.cc", | 78 "image_manager.cc", |
| 77 "image_manager.h", | 79 "image_manager.h", |
| 78 "in_process_command_buffer.cc", | 80 "in_process_command_buffer.cc", |
| 79 "in_process_command_buffer.h", | 81 "in_process_command_buffer.h", |
| 80 "logger.cc", | 82 "logger.cc", |
| 81 "logger.h", | 83 "logger.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 configs -= [ "//build/config/compiler:optimize" ] | 161 configs -= [ "//build/config/compiler:optimize" ] |
| 160 configs += [ "//build/config/compiler:optimize_max" ] | 162 configs += [ "//build/config/compiler:optimize_max" ] |
| 161 } | 163 } |
| 162 } | 164 } |
| 163 | 165 |
| 164 proto_library("disk_cache_proto") { | 166 proto_library("disk_cache_proto") { |
| 165 sources = [ | 167 sources = [ |
| 166 "disk_cache_proto.proto", | 168 "disk_cache_proto.proto", |
| 167 ] | 169 ] |
| 168 } | 170 } |
| OLD | NEW |