Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: gpu/command_buffer/service/BUILD.gn

Issue 2055713003: gpu: Implement GL_INTEL_framebuffer_CMAA via shaders in the GPU Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fix component & windows build. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_tex_image.cc", 61 "gles2_cmd_copy_tex_image.cc",
60 "gles2_cmd_copy_tex_image.h", 62 "gles2_cmd_copy_tex_image.h",
61 "gles2_cmd_copy_texture_chromium.cc", 63 "gles2_cmd_copy_texture_chromium.cc",
62 "gles2_cmd_copy_texture_chromium.h", 64 "gles2_cmd_copy_texture_chromium.h",
63 "gles2_cmd_decoder.cc", 65 "gles2_cmd_decoder.cc",
64 "gles2_cmd_decoder.h", 66 "gles2_cmd_decoder.h",
65 "gles2_cmd_decoder_autogen.h", 67 "gles2_cmd_decoder_autogen.h",
66 "gles2_cmd_decoder_passthrough.cc", 68 "gles2_cmd_decoder_passthrough.cc",
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 configs -= [ "//build/config/compiler:default_optimization" ] 181 configs -= [ "//build/config/compiler:default_optimization" ]
180 configs += [ "//build/config/compiler:optimize_max" ] 182 configs += [ "//build/config/compiler:optimize_max" ]
181 } 183 }
182 } 184 }
183 185
184 proto_library("disk_cache_proto") { 186 proto_library("disk_cache_proto") {
185 sources = [ 187 sources = [
186 "disk_cache_proto.proto", 188 "disk_cache_proto.proto",
187 ] 189 ]
188 } 190 }
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698