| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |