| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "framebuffer_manager.cc", | 49 "framebuffer_manager.cc", |
| 50 "framebuffer_manager.h", | 50 "framebuffer_manager.h", |
| 51 "gl_context_virtual.cc", | 51 "gl_context_virtual.cc", |
| 52 "gl_context_virtual.h", | 52 "gl_context_virtual.h", |
| 53 "gl_state_restorer_impl.cc", | 53 "gl_state_restorer_impl.cc", |
| 54 "gl_state_restorer_impl.h", | 54 "gl_state_restorer_impl.h", |
| 55 "gl_utils.cc", | 55 "gl_utils.cc", |
| 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_tex_image.cc", |
| 60 "gles2_cmd_copy_tex_image.h", |
| 59 "gles2_cmd_copy_texture_chromium.cc", | 61 "gles2_cmd_copy_texture_chromium.cc", |
| 60 "gles2_cmd_copy_texture_chromium.h", | 62 "gles2_cmd_copy_texture_chromium.h", |
| 61 "gles2_cmd_decoder.cc", | 63 "gles2_cmd_decoder.cc", |
| 62 "gles2_cmd_decoder.h", | 64 "gles2_cmd_decoder.h", |
| 63 "gles2_cmd_decoder_autogen.h", | 65 "gles2_cmd_decoder_autogen.h", |
| 64 "gles2_cmd_decoder_passthrough.cc", | 66 "gles2_cmd_decoder_passthrough.cc", |
| 65 "gles2_cmd_decoder_passthrough.h", | 67 "gles2_cmd_decoder_passthrough.h", |
| 66 "gles2_cmd_decoder_passthrough_doer_prototypes.h", | 68 "gles2_cmd_decoder_passthrough_doer_prototypes.h", |
| 67 "gles2_cmd_decoder_passthrough_doers.cc", | 69 "gles2_cmd_decoder_passthrough_doers.cc", |
| 68 "gles2_cmd_decoder_passthrough_handlers.cc", | 70 "gles2_cmd_decoder_passthrough_handlers.cc", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 configs -= [ "//build/config/compiler:default_optimization" ] | 179 configs -= [ "//build/config/compiler:default_optimization" ] |
| 178 configs += [ "//build/config/compiler:optimize_max" ] | 180 configs += [ "//build/config/compiler:optimize_max" ] |
| 179 } | 181 } |
| 180 } | 182 } |
| 181 | 183 |
| 182 proto_library("disk_cache_proto") { | 184 proto_library("disk_cache_proto") { |
| 183 sources = [ | 185 sources = [ |
| 184 "disk_cache_proto.proto", | 186 "disk_cache_proto.proto", |
| 185 ] | 187 ] |
| 186 } | 188 } |
| OLD | NEW |