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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/nacl.scons

Issue 9836126: Add ShareGroup stub (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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 | Annotate | Revision Log
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 # Underlay $SOURCE_ROOT/gpu in this directory. 8 # Underlay $SOURCE_ROOT/gpu in this directory.
9 Dir('.').addRepository(Dir('#/../gpu')) 9 Dir('.').addRepository(Dir('#/../gpu'))
10 10
(...skipping 19 matching lines...) Expand all
30 'command_buffer/client/cmd_buffer_helper.cc', 30 'command_buffer/client/cmd_buffer_helper.cc',
31 'command_buffer/client/fenced_allocator.cc', 31 'command_buffer/client/fenced_allocator.cc',
32 'command_buffer/client/gles2_c_lib.cc', 32 'command_buffer/client/gles2_c_lib.cc',
33 'command_buffer/client/gles2_cmd_helper.cc', 33 'command_buffer/client/gles2_cmd_helper.cc',
34 'command_buffer/client/gles2_implementation.cc', 34 'command_buffer/client/gles2_implementation.cc',
35 'command_buffer/client/program_info_manager.cc', 35 'command_buffer/client/program_info_manager.cc',
36 'command_buffer/client/gles2_lib.cc', 36 'command_buffer/client/gles2_lib.cc',
37 'command_buffer/client/mapped_memory.cc', 37 'command_buffer/client/mapped_memory.cc',
38 'command_buffer/client/query_tracker.cc', 38 'command_buffer/client/query_tracker.cc',
39 'command_buffer/client/ring_buffer.cc', 39 'command_buffer/client/ring_buffer.cc',
40 'command_buffer/client/share_group.cc',
40 'command_buffer/client/transfer_buffer.cc', 41 'command_buffer/client/transfer_buffer.cc',
41 'command_buffer/common/id_allocator.cc', 42 'command_buffer/common/id_allocator.cc',
42 ] 43 ]
43 44
44 command_buffer_srcs = command_buffer_common_srcs + command_buffer_client_srcs; 45 command_buffer_srcs = command_buffer_common_srcs + command_buffer_client_srcs;
45 46
46 libppruntime = env.NaClSdkLibrary( 47 libppruntime = env.NaClSdkLibrary(
47 'libppruntime', 48 'libppruntime',
48 ['command_buffer_nacl.cc', 49 ['command_buffer_nacl.cc',
49 'input_event_data.cc', 50 'input_event_data.cc',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'srpc', 120 'srpc',
120 'gio', 121 'gio',
121 'platform', 122 'platform',
122 ]) 123 ])
123 124
124 header_install = env.AddHeaderToSdk(['ppruntime.h']) 125 header_install = env.AddHeaderToSdk(['ppruntime.h'])
125 env.AddLibraryToSdk(libppruntime) 126 env.AddLibraryToSdk(libppruntime)
126 127
127 # Clients that overload main() will use ppruntime.h. 128 # Clients that overload main() will use ppruntime.h.
128 env.Requires(libppruntime, header_install) 129 env.Requires(libppruntime, header_install)
OLDNEW
« no previous file with comments | « gpu/gpu_common.gypi ('k') | ppapi/native_client/src/shared/ppapi_proxy/ppapi_proxy_untrusted.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698