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 group("service") { | 8 group("service") { |
9 if (is_component_build) { | 9 if (is_component_build) { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "gles2_cmd_clear_framebuffer.h", | 57 "gles2_cmd_clear_framebuffer.h", |
58 "gles2_cmd_copy_texture_chromium.cc", | 58 "gles2_cmd_copy_texture_chromium.cc", |
59 "gles2_cmd_copy_texture_chromium.h", | 59 "gles2_cmd_copy_texture_chromium.h", |
60 "gles2_cmd_decoder.cc", | 60 "gles2_cmd_decoder.cc", |
61 "gles2_cmd_decoder.h", | 61 "gles2_cmd_decoder.h", |
62 "gles2_cmd_decoder_autogen.h", | 62 "gles2_cmd_decoder_autogen.h", |
63 "gles2_cmd_validation.cc", | 63 "gles2_cmd_validation.cc", |
64 "gles2_cmd_validation.h", | 64 "gles2_cmd_validation.h", |
65 "gles2_cmd_validation_autogen.h", | 65 "gles2_cmd_validation_autogen.h", |
66 "gles2_cmd_validation_implementation_autogen.h", | 66 "gles2_cmd_validation_implementation_autogen.h", |
| 67 "gpu_preferences.cc", |
| 68 "gpu_preferences.h", |
67 "gpu_scheduler.cc", | 69 "gpu_scheduler.cc", |
68 "gpu_scheduler.h", | 70 "gpu_scheduler.h", |
69 "gpu_state_tracer.cc", | 71 "gpu_state_tracer.cc", |
70 "gpu_state_tracer.h", | 72 "gpu_state_tracer.h", |
71 "gpu_switches.cc", | 73 "gpu_switches.cc", |
72 "gpu_switches.h", | 74 "gpu_switches.h", |
73 "gpu_tracer.cc", | 75 "gpu_tracer.cc", |
74 "gpu_tracer.h", | 76 "gpu_tracer.h", |
75 "id_manager.cc", | 77 "id_manager.cc", |
76 "id_manager.h", | 78 "id_manager.h", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 configs -= [ "//build/config/compiler:default_optimization" ] | 169 configs -= [ "//build/config/compiler:default_optimization" ] |
168 configs += [ "//build/config/compiler:optimize_max" ] | 170 configs += [ "//build/config/compiler:optimize_max" ] |
169 } | 171 } |
170 } | 172 } |
171 | 173 |
172 proto_library("disk_cache_proto") { | 174 proto_library("disk_cache_proto") { |
173 sources = [ | 175 sources = [ |
174 "disk_cache_proto.proto", | 176 "disk_cache_proto.proto", |
175 ] | 177 ] |
176 } | 178 } |
OLD | NEW |