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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "framebuffer_completeness_cache.cc", | 47 "framebuffer_completeness_cache.cc", |
48 "framebuffer_completeness_cache.h", | 48 "framebuffer_completeness_cache.h", |
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_apply_framebuffer_attachment_cmaa_intel.cc", |
| 58 "gles2_cmd_apply_framebuffer_attachment_cmaa_intel.h", |
57 "gles2_cmd_clear_framebuffer.cc", | 59 "gles2_cmd_clear_framebuffer.cc", |
58 "gles2_cmd_clear_framebuffer.h", | 60 "gles2_cmd_clear_framebuffer.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_validation.cc", | 68 "gles2_cmd_validation.cc", |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 configs -= [ "//build/config/compiler:default_optimization" ] | 175 configs -= [ "//build/config/compiler:default_optimization" ] |
174 configs += [ "//build/config/compiler:optimize_max" ] | 176 configs += [ "//build/config/compiler:optimize_max" ] |
175 } | 177 } |
176 } | 178 } |
177 | 179 |
178 proto_library("disk_cache_proto") { | 180 proto_library("disk_cache_proto") { |
179 sources = [ | 181 sources = [ |
180 "disk_cache_proto.proto", | 182 "disk_cache_proto.proto", |
181 ] | 183 ] |
182 } | 184 } |
OLD | NEW |