| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "gl_utils.h", | 56 "gl_utils.h", |
| 57 "gles2_cmd_clear_framebuffer.cc", | 57 "gles2_cmd_clear_framebuffer.cc", |
| 58 "gles2_cmd_clear_framebuffer.h", | 58 "gles2_cmd_clear_framebuffer.h", |
| 59 "gles2_cmd_copy_texture_chromium.cc", | 59 "gles2_cmd_copy_texture_chromium.cc", |
| 60 "gles2_cmd_copy_texture_chromium.h", | 60 "gles2_cmd_copy_texture_chromium.h", |
| 61 "gles2_cmd_decoder.cc", | 61 "gles2_cmd_decoder.cc", |
| 62 "gles2_cmd_decoder.h", | 62 "gles2_cmd_decoder.h", |
| 63 "gles2_cmd_decoder_autogen.h", | 63 "gles2_cmd_decoder_autogen.h", |
| 64 "gles2_cmd_decoder_passthrough.cc", | 64 "gles2_cmd_decoder_passthrough.cc", |
| 65 "gles2_cmd_decoder_passthrough.h", | 65 "gles2_cmd_decoder_passthrough.h", |
| 66 "gles2_cmd_decoder_passthrough_doers.h", |
| 67 "gles2_cmd_decoder_passthrough_handlers.h", |
| 68 "gles2_cmd_decoder_passthrough_handlers_autogen.h", |
| 66 "gles2_cmd_validation.cc", | 69 "gles2_cmd_validation.cc", |
| 67 "gles2_cmd_validation.h", | 70 "gles2_cmd_validation.h", |
| 68 "gles2_cmd_validation_autogen.h", | 71 "gles2_cmd_validation_autogen.h", |
| 69 "gles2_cmd_validation_implementation_autogen.h", | 72 "gles2_cmd_validation_implementation_autogen.h", |
| 70 "gpu_preferences.cc", | 73 "gpu_preferences.cc", |
| 71 "gpu_preferences.h", | 74 "gpu_preferences.h", |
| 72 "gpu_state_tracer.cc", | 75 "gpu_state_tracer.cc", |
| 73 "gpu_state_tracer.h", | 76 "gpu_state_tracer.h", |
| 74 "gpu_switches.cc", | 77 "gpu_switches.cc", |
| 75 "gpu_switches.h", | 78 "gpu_switches.h", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 configs -= [ "//build/config/compiler:default_optimization" ] | 176 configs -= [ "//build/config/compiler:default_optimization" ] |
| 174 configs += [ "//build/config/compiler:optimize_max" ] | 177 configs += [ "//build/config/compiler:optimize_max" ] |
| 175 } | 178 } |
| 176 } | 179 } |
| 177 | 180 |
| 178 proto_library("disk_cache_proto") { | 181 proto_library("disk_cache_proto") { |
| 179 sources = [ | 182 sources = [ |
| 180 "disk_cache_proto.proto", | 183 "disk_cache_proto.proto", |
| 181 ] | 184 ] |
| 182 } | 185 } |
| OLD | NEW |