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

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

Issue 1135943002: Pull in various gpu/command_buffer fixes from chromium (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "gles2_cmd_copy_texture_chromium.h", 55 "gles2_cmd_copy_texture_chromium.h",
56 "gles2_cmd_decoder.cc", 56 "gles2_cmd_decoder.cc",
57 "gles2_cmd_decoder.h", 57 "gles2_cmd_decoder.h",
58 "gles2_cmd_decoder_autogen.h", 58 "gles2_cmd_decoder_autogen.h",
59 "gles2_cmd_validation.cc", 59 "gles2_cmd_validation.cc",
60 "gles2_cmd_validation.h", 60 "gles2_cmd_validation.h",
61 "gles2_cmd_validation_autogen.h", 61 "gles2_cmd_validation_autogen.h",
62 "gles2_cmd_validation_implementation_autogen.h", 62 "gles2_cmd_validation_implementation_autogen.h",
63 "gpu_scheduler.cc", 63 "gpu_scheduler.cc",
64 "gpu_scheduler.h", 64 "gpu_scheduler.h",
65 "gpu_scheduler_mock.h",
66 "gpu_state_tracer.cc", 65 "gpu_state_tracer.cc",
67 "gpu_state_tracer.h", 66 "gpu_state_tracer.h",
68 "gpu_switches.cc", 67 "gpu_switches.cc",
69 "gpu_switches.h", 68 "gpu_switches.h",
70 "gpu_tracer.cc", 69 "gpu_tracer.cc",
71 "gpu_tracer.h", 70 "gpu_tracer.h",
72 "id_manager.cc", 71 "id_manager.cc",
73 "id_manager.h", 72 "id_manager.h",
74 "image_factory.cc", 73 "image_factory.cc",
75 "image_factory.h", 74 "image_factory.h",
76 "image_manager.cc", 75 "image_manager.cc",
77 "image_manager.h", 76 "image_manager.h",
78 "in_process_command_buffer.cc", 77 "in_process_command_buffer.cc",
79 "in_process_command_buffer.h", 78 "in_process_command_buffer.h",
80 "logger.cc", 79 "logger.cc",
81 "logger.h", 80 "logger.h",
82 "mailbox_manager.h", 81 "mailbox_manager.h",
83 "mailbox_manager_impl.cc", 82 "mailbox_manager_impl.cc",
84 "mailbox_manager_impl.h", 83 "mailbox_manager_impl.h",
85 "mailbox_manager_sync.cc", 84 "mailbox_manager_sync.cc",
86 "mailbox_manager_sync.h", 85 "mailbox_manager_sync.h",
87 "memory_program_cache.cc", 86 "memory_program_cache.cc",
88 "memory_program_cache.h", 87 "memory_program_cache.h",
89 "mocks.h",
90 "program_cache.cc", 88 "program_cache.cc",
91 "program_cache.h", 89 "program_cache.h",
92 "program_manager.cc", 90 "program_manager.cc",
93 "program_manager.h", 91 "program_manager.h",
94 "query_manager.cc", 92 "query_manager.cc",
95 "query_manager.h", 93 "query_manager.h",
96 "renderbuffer_manager.cc", 94 "renderbuffer_manager.cc",
97 "renderbuffer_manager.h", 95 "renderbuffer_manager.h",
98 "shader_manager.cc", 96 "shader_manager.cc",
99 "shader_manager.h", 97 "shader_manager.h",
(...skipping 28 matching lines...) Expand all
128 include_dirs = [ "//third_party/mesa/src/include" ] 126 include_dirs = [ "//third_party/mesa/src/include" ]
129 127
130 public_deps = [ 128 public_deps = [
131 "//gpu/command_buffer/common", 129 "//gpu/command_buffer/common",
132 ] 130 ]
133 deps = [ 131 deps = [
134 ":disk_cache_proto", 132 ":disk_cache_proto",
135 "//base", 133 "//base",
136 "//base/third_party/dynamic_annotations", 134 "//base/third_party/dynamic_annotations",
137 "//crypto", 135 "//crypto",
136 "//gpu/config",
138 "//third_party/angle:translator", 137 "//third_party/angle:translator",
139 "//third_party/protobuf:protobuf_lite", 138 "//third_party/protobuf:protobuf_lite",
140 "//third_party/re2", 139 "//third_party/re2",
141 "//third_party/smhasher:cityhash", 140 "//third_party/smhasher:cityhash",
142 "//ui/gfx", 141 "//ui/gfx",
143 "//ui/gfx/geometry", 142 "//ui/gfx/geometry",
144 "//ui/gl", 143 "//ui/gl",
145 ] 144 ]
146 145
147 if (ui_compositor_image_transport) { 146 if (ui_compositor_image_transport) {
(...skipping 12 matching lines...) Expand all
160 configs -= [ "//build/config/compiler:optimize" ] 159 configs -= [ "//build/config/compiler:optimize" ]
161 configs += [ "//build/config/compiler:optimize_max" ] 160 configs += [ "//build/config/compiler:optimize_max" ]
162 } 161 }
163 } 162 }
164 163
165 proto_library("disk_cache_proto") { 164 proto_library("disk_cache_proto") {
166 sources = [ 165 sources = [
167 "disk_cache_proto.proto", 166 "disk_cache_proto.proto",
168 ] 167 ]
169 } 168 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils_implementation_autogen.h ('k') | gpu/command_buffer/service/context_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698