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

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

Issue 169403005: command_buffer: Implement path rendering functions for CHROMIUM_path_rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nv-pr-02-texgen
Patch Set: rebase and cleanup ids Created 6 years, 2 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
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 source_set("service") { 8 source_set("service") {
9 sources = [ 9 sources = [
10 "async_pixel_transfer_delegate.cc", 10 "async_pixel_transfer_delegate.cc",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "in_process_command_buffer.h", 75 "in_process_command_buffer.h",
76 "logger.cc", 76 "logger.cc",
77 "logger.h", 77 "logger.h",
78 "mailbox_manager.cc", 78 "mailbox_manager.cc",
79 "mailbox_manager.h", 79 "mailbox_manager.h",
80 "mailbox_synchronizer.cc", 80 "mailbox_synchronizer.cc",
81 "mailbox_synchronizer.h", 81 "mailbox_synchronizer.h",
82 "memory_program_cache.h", 82 "memory_program_cache.h",
83 "memory_program_cache.cc", 83 "memory_program_cache.cc",
84 "mocks.h", 84 "mocks.h",
85 "path_manager.h",
86 "path_manager.cc",
85 "program_manager.h", 87 "program_manager.h",
86 "program_manager.cc", 88 "program_manager.cc",
87 "query_manager.h", 89 "query_manager.h",
88 "query_manager.cc", 90 "query_manager.cc",
89 "renderbuffer_manager.h", 91 "renderbuffer_manager.h",
90 "renderbuffer_manager.cc", 92 "renderbuffer_manager.cc",
91 "program_cache.h", 93 "program_cache.h",
92 "program_cache.cc", 94 "program_cache.cc",
93 "shader_manager.h", 95 "shader_manager.h",
94 "shader_manager.cc", 96 "shader_manager.cc",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 if (is_android && !is_debug) { 152 if (is_android && !is_debug) {
151 # On Android optimize more since this component can be a bottleneck. 153 # On Android optimize more since this component can be a bottleneck.
152 configs -= [ "//build/config/compiler:optimize" ] 154 configs -= [ "//build/config/compiler:optimize" ]
153 configs += [ "//build/config/compiler:optimize_max" ] 155 configs += [ "//build/config/compiler:optimize_max" ]
154 } 156 }
155 } 157 }
156 158
157 proto_library("disk_cache_proto") { 159 proto_library("disk_cache_proto") {
158 sources = [ "disk_cache_proto.proto" ] 160 sources = [ "disk_cache_proto.proto" ]
159 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698