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

Side by Side Diff: gpu/command_buffer_common.gypi

Issue 1849313002: Pull gpu CmdBuf service/client shared GpuMemoryBuffer code to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 8 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 (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 'dependencies': [ 6 'dependencies': [
7 '../third_party/khronos/khronos.gyp:khronos_headers', 7 '../third_party/khronos/khronos.gyp:khronos_headers',
8 '../third_party/mesa/mesa.gyp:mesa_headers',
8 ], 9 ],
9 'sources': [ 10 'sources': [
10 'command_buffer/common/bitfield_helpers.h', 11 'command_buffer/common/bitfield_helpers.h',
11 'command_buffer/common/buffer.cc', 12 'command_buffer/common/buffer.cc',
12 'command_buffer/common/buffer.h', 13 'command_buffer/common/buffer.h',
13 'command_buffer/common/capabilities.cc', 14 'command_buffer/common/capabilities.cc',
14 'command_buffer/common/capabilities.h', 15 'command_buffer/common/capabilities.h',
15 'command_buffer/common/cmd_buffer_common.cc', 16 'command_buffer/common/cmd_buffer_common.cc',
16 'command_buffer/common/cmd_buffer_common.h', 17 'command_buffer/common/cmd_buffer_common.h',
17 'command_buffer/common/command_buffer.h', 18 'command_buffer/common/command_buffer.h',
(...skipping 13 matching lines...) Expand all
31 'command_buffer/common/mailbox.h', 32 'command_buffer/common/mailbox.h',
32 'command_buffer/common/mailbox_holder.cc', 33 'command_buffer/common/mailbox_holder.cc',
33 'command_buffer/common/mailbox_holder.h', 34 'command_buffer/common/mailbox_holder.h',
34 'command_buffer/common/sync_token.cc', 35 'command_buffer/common/sync_token.cc',
35 'command_buffer/common/sync_token.h', 36 'command_buffer/common/sync_token.h',
36 'command_buffer/common/thread_local.h', 37 'command_buffer/common/thread_local.h',
37 'command_buffer/common/time.h', 38 'command_buffer/common/time.h',
38 'command_buffer/common/value_state.cc', 39 'command_buffer/common/value_state.cc',
39 'command_buffer/common/value_state.h', 40 'command_buffer/common/value_state.h',
40 ], 41 ],
42 'target_conditions': [
43 ['>(nacl_untrusted_build) == 0', {
44 'sources+': [
45 'command_buffer/common/gpu_memory_buffer_support.cc',
46 'command_buffer/common/gpu_memory_buffer_support.h',
47 ],
48 }],
49 ],
41 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698