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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "gles2_cmd_copy_texture_chromium.h", | 70 "gles2_cmd_copy_texture_chromium.h", |
71 "gles2_cmd_decoder.cc", | 71 "gles2_cmd_decoder.cc", |
72 "gles2_cmd_decoder.h", | 72 "gles2_cmd_decoder.h", |
73 "gles2_cmd_decoder_autogen.h", | 73 "gles2_cmd_decoder_autogen.h", |
74 "gles2_cmd_decoder_passthrough.cc", | 74 "gles2_cmd_decoder_passthrough.cc", |
75 "gles2_cmd_decoder_passthrough.h", | 75 "gles2_cmd_decoder_passthrough.h", |
76 "gles2_cmd_decoder_passthrough_doer_prototypes.h", | 76 "gles2_cmd_decoder_passthrough_doer_prototypes.h", |
77 "gles2_cmd_decoder_passthrough_doers.cc", | 77 "gles2_cmd_decoder_passthrough_doers.cc", |
78 "gles2_cmd_decoder_passthrough_handlers.cc", | 78 "gles2_cmd_decoder_passthrough_handlers.cc", |
79 "gles2_cmd_decoder_passthrough_handlers_autogen.cc", | 79 "gles2_cmd_decoder_passthrough_handlers_autogen.cc", |
| 80 "gles2_cmd_srgb_converter.cc", |
| 81 "gles2_cmd_srgb_converter.h", |
80 "gles2_cmd_validation.cc", | 82 "gles2_cmd_validation.cc", |
81 "gles2_cmd_validation.h", | 83 "gles2_cmd_validation.h", |
82 "gles2_cmd_validation_autogen.h", | 84 "gles2_cmd_validation_autogen.h", |
83 "gles2_cmd_validation_implementation_autogen.h", | 85 "gles2_cmd_validation_implementation_autogen.h", |
84 "gpu_preferences.cc", | 86 "gpu_preferences.cc", |
85 "gpu_preferences.h", | 87 "gpu_preferences.h", |
86 "gpu_state_tracer.cc", | 88 "gpu_state_tracer.cc", |
87 "gpu_state_tracer.h", | 89 "gpu_state_tracer.h", |
88 "gpu_switches.cc", | 90 "gpu_switches.cc", |
89 "gpu_switches.h", | 91 "gpu_switches.h", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 configs -= [ "//build/config/compiler:default_optimization" ] | 190 configs -= [ "//build/config/compiler:default_optimization" ] |
189 configs += [ "//build/config/compiler:optimize_max" ] | 191 configs += [ "//build/config/compiler:optimize_max" ] |
190 } | 192 } |
191 } | 193 } |
192 | 194 |
193 proto_library("disk_cache_proto") { | 195 proto_library("disk_cache_proto") { |
194 sources = [ | 196 sources = [ |
195 "disk_cache_proto.proto", | 197 "disk_cache_proto.proto", |
196 ] | 198 ] |
197 } | 199 } |
OLD | NEW |