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 25 matching lines...) Expand all Loading... |
36 "context_group.cc", | 36 "context_group.cc", |
37 "context_group.h", | 37 "context_group.h", |
38 "context_state.cc", | 38 "context_state.cc", |
39 "context_state.h", | 39 "context_state.h", |
40 "context_state_autogen.h", | 40 "context_state_autogen.h", |
41 "context_state_impl_autogen.h", | 41 "context_state_impl_autogen.h", |
42 "error_state.cc", | 42 "error_state.cc", |
43 "error_state.h", | 43 "error_state.h", |
44 "feature_info.cc", | 44 "feature_info.cc", |
45 "feature_info.h", | 45 "feature_info.h", |
| 46 "fence_sync_manager.cc", |
| 47 "fence_sync_manager.h", |
46 "framebuffer_completeness_cache.cc", | 48 "framebuffer_completeness_cache.cc", |
47 "framebuffer_completeness_cache.h", | 49 "framebuffer_completeness_cache.h", |
48 "framebuffer_manager.cc", | 50 "framebuffer_manager.cc", |
49 "framebuffer_manager.h", | 51 "framebuffer_manager.h", |
50 "gl_context_virtual.cc", | 52 "gl_context_virtual.cc", |
51 "gl_context_virtual.h", | 53 "gl_context_virtual.h", |
52 "gl_state_restorer_impl.cc", | 54 "gl_state_restorer_impl.cc", |
53 "gl_state_restorer_impl.h", | 55 "gl_state_restorer_impl.h", |
54 "gl_utils.h", | 56 "gl_utils.h", |
55 "gles2_cmd_clear_framebuffer.cc", | 57 "gles2_cmd_clear_framebuffer.cc", |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 configs -= [ "//build/config/compiler:optimize" ] | 166 configs -= [ "//build/config/compiler:optimize" ] |
165 configs += [ "//build/config/compiler:optimize_max" ] | 167 configs += [ "//build/config/compiler:optimize_max" ] |
166 } | 168 } |
167 } | 169 } |
168 | 170 |
169 proto_library("disk_cache_proto") { | 171 proto_library("disk_cache_proto") { |
170 sources = [ | 172 sources = [ |
171 "disk_cache_proto.proto", | 173 "disk_cache_proto.proto", |
172 ] | 174 ] |
173 } | 175 } |
OLD | NEW |