| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "gles2_cmd_decoder.cc", | 51 "gles2_cmd_decoder.cc", |
| 52 "gles2_cmd_validation.h", | 52 "gles2_cmd_validation.h", |
| 53 "gles2_cmd_validation.cc", | 53 "gles2_cmd_validation.cc", |
| 54 "gles2_cmd_validation_autogen.h", | 54 "gles2_cmd_validation_autogen.h", |
| 55 "gles2_cmd_validation_implementation_autogen.h", | 55 "gles2_cmd_validation_implementation_autogen.h", |
| 56 "gl_context_virtual.cc", | 56 "gl_context_virtual.cc", |
| 57 "gl_context_virtual.h", | 57 "gl_context_virtual.h", |
| 58 "gl_state_restorer_impl.cc", | 58 "gl_state_restorer_impl.cc", |
| 59 "gl_state_restorer_impl.h", | 59 "gl_state_restorer_impl.h", |
| 60 "gl_utils.h", | 60 "gl_utils.h", |
| 61 "gpu_control_service.cc", | |
| 62 "gpu_control_service.h", | |
| 63 "gpu_memory_buffer_manager.h", | |
| 64 "gpu_scheduler.cc", | 61 "gpu_scheduler.cc", |
| 65 "gpu_scheduler.h", | 62 "gpu_scheduler.h", |
| 66 "gpu_scheduler_mock.h", | 63 "gpu_scheduler_mock.h", |
| 67 "gpu_state_tracer.cc", | 64 "gpu_state_tracer.cc", |
| 68 "gpu_state_tracer.h", | 65 "gpu_state_tracer.h", |
| 69 "gpu_switches.cc", | 66 "gpu_switches.cc", |
| 70 "gpu_switches.h", | 67 "gpu_switches.h", |
| 71 "gpu_tracer.cc", | 68 "gpu_tracer.cc", |
| 72 "gpu_tracer.h", | 69 "gpu_tracer.h", |
| 73 "id_manager.h", | 70 "id_manager.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 if (is_android && !is_debug) { | 145 if (is_android && !is_debug) { |
| 149 # On Android optimize more since this component can be a bottleneck. | 146 # On Android optimize more since this component can be a bottleneck. |
| 150 configs -= [ "//build/config/compiler:optimize" ] | 147 configs -= [ "//build/config/compiler:optimize" ] |
| 151 configs += [ "//build/config/compiler:optimize_max" ] | 148 configs += [ "//build/config/compiler:optimize_max" ] |
| 152 } | 149 } |
| 153 } | 150 } |
| 154 | 151 |
| 155 proto_library("disk_cache_proto") { | 152 proto_library("disk_cache_proto") { |
| 156 sources = [ "disk_cache_proto.proto" ] | 153 sources = [ "disk_cache_proto.proto" ] |
| 157 } | 154 } |
| OLD | NEW |