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

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

Issue 681713002: Update from chromium https://crrev.com/301315 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « gin/wrappable_unittest.cc ('k') | gpu/command_buffer/service/context_group.cc » ('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 source_set("service") { 8 source_set("service") {
9 sources = [ 9 sources = [
10 "async_pixel_transfer_delegate.cc", 10 "async_pixel_transfer_delegate.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "gpu_tracer.cc", 68 "gpu_tracer.cc",
69 "gpu_tracer.h", 69 "gpu_tracer.h",
70 "id_manager.h", 70 "id_manager.h",
71 "id_manager.cc", 71 "id_manager.cc",
72 "image_manager.cc", 72 "image_manager.cc",
73 "image_manager.h", 73 "image_manager.h",
74 "in_process_command_buffer.cc", 74 "in_process_command_buffer.cc",
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",
79 "mailbox_manager.h", 78 "mailbox_manager.h",
80 "mailbox_synchronizer.cc", 79 "mailbox_manager_impl.cc",
81 "mailbox_synchronizer.h", 80 "mailbox_manager_impl.h",
81 "mailbox_manager_sync.cc",
82 "mailbox_manager_sync.h",
82 "memory_program_cache.h", 83 "memory_program_cache.h",
83 "memory_program_cache.cc", 84 "memory_program_cache.cc",
84 "mocks.h", 85 "mocks.h",
85 "program_manager.h", 86 "program_manager.h",
86 "program_manager.cc", 87 "program_manager.cc",
87 "query_manager.h", 88 "query_manager.h",
88 "query_manager.cc", 89 "query_manager.cc",
89 "renderbuffer_manager.h", 90 "renderbuffer_manager.h",
90 "renderbuffer_manager.cc", 91 "renderbuffer_manager.cc",
91 "program_cache.h", 92 "program_cache.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 if (is_android && !is_debug) { 151 if (is_android && !is_debug) {
151 # On Android optimize more since this component can be a bottleneck. 152 # On Android optimize more since this component can be a bottleneck.
152 configs -= [ "//build/config/compiler:optimize" ] 153 configs -= [ "//build/config/compiler:optimize" ]
153 configs += [ "//build/config/compiler:optimize_max" ] 154 configs += [ "//build/config/compiler:optimize_max" ]
154 } 155 }
155 } 156 }
156 157
157 proto_library("disk_cache_proto") { 158 proto_library("disk_cache_proto") {
158 sources = [ "disk_cache_proto.proto" ] 159 sources = [ "disk_cache_proto.proto" ]
159 } 160 }
OLDNEW
« no previous file with comments | « gin/wrappable_unittest.cc ('k') | gpu/command_buffer/service/context_group.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698