| 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 18 matching lines...) Expand all Loading... |
| 29 'command_buffer/client/cmd_buffer_helper.cc', | 29 'command_buffer/client/cmd_buffer_helper.cc', |
| 30 'command_buffer/client/fenced_allocator.cc', | 30 'command_buffer/client/fenced_allocator.cc', |
| 31 'command_buffer/client/gles2_c_lib.cc', | 31 'command_buffer/client/gles2_c_lib.cc', |
| 32 'command_buffer/client/gles2_cmd_helper.cc', | 32 'command_buffer/client/gles2_cmd_helper.cc', |
| 33 'command_buffer/client/gles2_implementation.cc', | 33 'command_buffer/client/gles2_implementation.cc', |
| 34 'command_buffer/client/program_info_manager.cc', | 34 'command_buffer/client/program_info_manager.cc', |
| 35 'command_buffer/client/gles2_lib.cc', | 35 'command_buffer/client/gles2_lib.cc', |
| 36 'command_buffer/client/mapped_memory.cc', | 36 'command_buffer/client/mapped_memory.cc', |
| 37 'command_buffer/client/query_tracker.cc', | 37 'command_buffer/client/query_tracker.cc', |
| 38 'command_buffer/client/ring_buffer.cc', | 38 'command_buffer/client/ring_buffer.cc', |
| 39 'command_buffer/client/share_group.cc', |
| 39 'command_buffer/client/transfer_buffer.cc', | 40 'command_buffer/client/transfer_buffer.cc', |
| 40 'command_buffer/common/id_allocator.cc', | 41 'command_buffer/common/id_allocator.cc', |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 command_buffer_srcs = command_buffer_common_srcs + command_buffer_client_srcs; | 44 command_buffer_srcs = command_buffer_common_srcs + command_buffer_client_srcs; |
| 44 | 45 |
| 45 libppruntime = env.NaClSdkLibrary( | 46 libppruntime = env.NaClSdkLibrary( |
| 46 'libppruntime', | 47 'libppruntime', |
| 47 ['command_buffer_nacl.cc', | 48 ['command_buffer_nacl.cc', |
| 48 'input_event_data.cc', | 49 'input_event_data.cc', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'srpc', | 119 'srpc', |
| 119 'gio', | 120 'gio', |
| 120 'platform', | 121 'platform', |
| 121 ]) | 122 ]) |
| 122 | 123 |
| 123 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 124 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
| 124 env.AddLibraryToSdk(libppruntime) | 125 env.AddLibraryToSdk(libppruntime) |
| 125 | 126 |
| 126 # Clients that overload main() will use ppruntime.h. | 127 # Clients that overload main() will use ppruntime.h. |
| 127 env.Requires(libppruntime, header_install) | 128 env.Requires(libppruntime, header_install) |
| OLD | NEW |