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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "context_group.cc", | 43 "context_group.cc", |
44 "context_group.h", | 44 "context_group.h", |
45 "context_state.cc", | 45 "context_state.cc", |
46 "context_state.h", | 46 "context_state.h", |
47 "context_state_autogen.h", | 47 "context_state_autogen.h", |
48 "context_state_impl_autogen.h", | 48 "context_state_impl_autogen.h", |
49 "error_state.cc", | 49 "error_state.cc", |
50 "error_state.h", | 50 "error_state.h", |
51 "feature_info.cc", | 51 "feature_info.cc", |
52 "feature_info.h", | 52 "feature_info.h", |
| 53 "fence_manager.cc", |
| 54 "fence_manager.h", |
53 "framebuffer_completeness_cache.cc", | 55 "framebuffer_completeness_cache.cc", |
54 "framebuffer_completeness_cache.h", | 56 "framebuffer_completeness_cache.h", |
55 "framebuffer_manager.cc", | 57 "framebuffer_manager.cc", |
56 "framebuffer_manager.h", | 58 "framebuffer_manager.h", |
57 "gl_context_virtual.cc", | 59 "gl_context_virtual.cc", |
58 "gl_context_virtual.h", | 60 "gl_context_virtual.h", |
59 "gl_state_restorer_impl.cc", | 61 "gl_state_restorer_impl.cc", |
60 "gl_state_restorer_impl.h", | 62 "gl_state_restorer_impl.h", |
61 "gl_utils.cc", | 63 "gl_utils.cc", |
62 "gl_utils.h", | 64 "gl_utils.h", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 configs -= [ "//build/config/compiler:default_optimization" ] | 193 configs -= [ "//build/config/compiler:default_optimization" ] |
192 configs += [ "//build/config/compiler:optimize_max" ] | 194 configs += [ "//build/config/compiler:optimize_max" ] |
193 } | 195 } |
194 } | 196 } |
195 | 197 |
196 proto_library("disk_cache_proto") { | 198 proto_library("disk_cache_proto") { |
197 sources = [ | 199 sources = [ |
198 "disk_cache_proto.proto", | 200 "disk_cache_proto.proto", |
199 ] | 201 ] |
200 } | 202 } |
OLD | NEW |