| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "feature_info.cc", | 44 "feature_info.cc", |
| 45 "feature_info.h", | 45 "feature_info.h", |
| 46 "framebuffer_completeness_cache.cc", | 46 "framebuffer_completeness_cache.cc", |
| 47 "framebuffer_completeness_cache.h", | 47 "framebuffer_completeness_cache.h", |
| 48 "framebuffer_manager.cc", | 48 "framebuffer_manager.cc", |
| 49 "framebuffer_manager.h", | 49 "framebuffer_manager.h", |
| 50 "gl_context_virtual.cc", | 50 "gl_context_virtual.cc", |
| 51 "gl_context_virtual.h", | 51 "gl_context_virtual.h", |
| 52 "gl_state_restorer_impl.cc", | 52 "gl_state_restorer_impl.cc", |
| 53 "gl_state_restorer_impl.h", | 53 "gl_state_restorer_impl.h", |
| 54 "gl_utils.cc", |
| 54 "gl_utils.h", | 55 "gl_utils.h", |
| 55 "gles2_cmd_clear_framebuffer.cc", | 56 "gles2_cmd_clear_framebuffer.cc", |
| 56 "gles2_cmd_clear_framebuffer.h", | 57 "gles2_cmd_clear_framebuffer.h", |
| 57 "gles2_cmd_copy_texture_chromium.cc", | 58 "gles2_cmd_copy_texture_chromium.cc", |
| 58 "gles2_cmd_copy_texture_chromium.h", | 59 "gles2_cmd_copy_texture_chromium.h", |
| 59 "gles2_cmd_decoder.cc", | 60 "gles2_cmd_decoder.cc", |
| 60 "gles2_cmd_decoder.h", | 61 "gles2_cmd_decoder.h", |
| 61 "gles2_cmd_decoder_autogen.h", | 62 "gles2_cmd_decoder_autogen.h", |
| 62 "gles2_cmd_validation.cc", | 63 "gles2_cmd_validation.cc", |
| 63 "gles2_cmd_validation.h", | 64 "gles2_cmd_validation.h", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 configs -= [ "//build/config/compiler:default_optimization" ] | 167 configs -= [ "//build/config/compiler:default_optimization" ] |
| 167 configs += [ "//build/config/compiler:optimize_max" ] | 168 configs += [ "//build/config/compiler:optimize_max" ] |
| 168 } | 169 } |
| 169 } | 170 } |
| 170 | 171 |
| 171 proto_library("disk_cache_proto") { | 172 proto_library("disk_cache_proto") { |
| 172 sources = [ | 173 sources = [ |
| 173 "disk_cache_proto.proto", | 174 "disk_cache_proto.proto", |
| 174 ] | 175 ] |
| 175 } | 176 } |
| OLD | NEW |