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