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

Side by Side Diff: gpu/command_buffer_service.gypi

Issue 1186393004: gpu: Remove async texture uploads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 3 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 | « gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc ('k') | gpu/gpu.gyp » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'include_dirs': [ 6 'include_dirs': [
7 '..', 7 '..',
8 ], 8 ],
9 'all_dependent_settings': { 9 'all_dependent_settings': {
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 }, 13 },
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations',
17 '../crypto/crypto.gyp:crypto', 17 '../crypto/crypto.gyp:crypto',
18 '../third_party/khronos/khronos.gyp:khronos_headers', 18 '../third_party/khronos/khronos.gyp:khronos_headers',
19 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 19 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
20 '../third_party/re2/re2.gyp:re2', 20 '../third_party/re2/re2.gyp:re2',
21 '../third_party/smhasher/smhasher.gyp:cityhash', 21 '../third_party/smhasher/smhasher.gyp:cityhash',
22 '../ui/gfx/gfx.gyp:gfx', 22 '../ui/gfx/gfx.gyp:gfx',
23 '../ui/gfx/gfx.gyp:gfx_geometry', 23 '../ui/gfx/gfx.gyp:gfx_geometry',
24 '../ui/gl/gl.gyp:gl', 24 '../ui/gl/gl.gyp:gl',
25 '<(angle_path)/src/angle.gyp:commit_id', 25 '<(angle_path)/src/angle.gyp:commit_id',
26 '<(angle_path)/src/angle.gyp:translator', 26 '<(angle_path)/src/angle.gyp:translator',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'command_buffer/service/async_pixel_transfer_delegate.cc',
30 'command_buffer/service/async_pixel_transfer_delegate.h',
31 'command_buffer/service/async_pixel_transfer_manager.cc',
32 'command_buffer/service/async_pixel_transfer_manager.h',
33 'command_buffer/service/async_pixel_transfer_manager_android.cc',
34 'command_buffer/service/async_pixel_transfer_manager_idle.cc',
35 'command_buffer/service/async_pixel_transfer_manager_idle.h',
36 'command_buffer/service/async_pixel_transfer_manager_linux.cc',
37 'command_buffer/service/async_pixel_transfer_manager_mac.cc',
38 'command_buffer/service/async_pixel_transfer_manager_share_group.cc',
39 'command_buffer/service/async_pixel_transfer_manager_share_group.h',
40 'command_buffer/service/async_pixel_transfer_manager_stub.cc',
41 'command_buffer/service/async_pixel_transfer_manager_stub.h',
42 'command_buffer/service/async_pixel_transfer_manager_sync.cc',
43 'command_buffer/service/async_pixel_transfer_manager_sync.h',
44 'command_buffer/service/async_pixel_transfer_manager_win.cc',
45 'command_buffer/service/buffer_manager.cc', 29 'command_buffer/service/buffer_manager.cc',
46 'command_buffer/service/buffer_manager.h', 30 'command_buffer/service/buffer_manager.h',
47 'command_buffer/service/cmd_buffer_engine.h', 31 'command_buffer/service/cmd_buffer_engine.h',
48 'command_buffer/service/cmd_parser.cc', 32 'command_buffer/service/cmd_parser.cc',
49 'command_buffer/service/cmd_parser.h', 33 'command_buffer/service/cmd_parser.h',
50 'command_buffer/service/command_buffer_service.cc', 34 'command_buffer/service/command_buffer_service.cc',
51 'command_buffer/service/command_buffer_service.h', 35 'command_buffer/service/command_buffer_service.h',
52 'command_buffer/service/common_decoder.cc', 36 'command_buffer/service/common_decoder.cc',
53 'command_buffer/service/common_decoder.h', 37 'command_buffer/service/common_decoder.h',
54 'command_buffer/service/context_group.cc', 38 'command_buffer/service/context_group.cc',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 }], 133 }],
150 ['OS=="mac"', { 134 ['OS=="mac"', {
151 # Required by gles2_cmd_decoder.cc on Mac. 135 # Required by gles2_cmd_decoder.cc on Mac.
152 'link_settings': { 136 'link_settings': {
153 'libraries': [ 137 'libraries': [
154 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', 138 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework',
155 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 139 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
156 ], 140 ],
157 }, 141 },
158 }], 142 }],
159 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', {
160 'sources': [
161 'command_buffer/service/async_pixel_transfer_manager_egl.cc',
162 'command_buffer/service/async_pixel_transfer_manager_egl.h',
163 ],
164 }],
165 ], 143 ],
166 } 144 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_virtual_contexts_unittest.cc ('k') | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698