| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2010 The Native Client Authors. All rights reserved. | 2 # Copyright 2010 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can | 3 # Use of this source code is governed by a BSD-style license that can |
| 4 # be found in the LICENSE file. | 4 # be 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'plugin_ppb.cc', | 100 'plugin_ppb.cc', |
| 101 'plugin_ppb_audio.cc', | 101 'plugin_ppb_audio.cc', |
| 102 'plugin_ppb_audio_config.cc', | 102 'plugin_ppb_audio_config.cc', |
| 103 'plugin_ppb_buffer.cc', | 103 'plugin_ppb_buffer.cc', |
| 104 'plugin_ppb_core.cc', | 104 'plugin_ppb_core.cc', |
| 105 'plugin_ppb_file_io.cc', | 105 'plugin_ppb_file_io.cc', |
| 106 'plugin_ppb_file_ref.cc', | 106 'plugin_ppb_file_ref.cc', |
| 107 'plugin_ppb_graphics_2d.cc', | 107 'plugin_ppb_graphics_2d.cc', |
| 108 'plugin_ppb_image_data.cc', | 108 'plugin_ppb_image_data.cc', |
| 109 'plugin_ppb_instance.cc', | 109 'plugin_ppb_instance.cc', |
| 110 'plugin_ppb_gles_extensions.cc', |
| 110 'plugin_ppb_url_loader.cc', | 111 'plugin_ppb_url_loader.cc', |
| 111 'plugin_ppb_url_request_info.cc', | 112 'plugin_ppb_url_request_info.cc', |
| 112 'plugin_ppb_url_response_info.cc', | 113 'plugin_ppb_url_response_info.cc', |
| 113 'plugin_ppb_var.cc', | 114 'plugin_ppb_var.cc', |
| 114 'plugin_ppp_instance_rpc_server.cc', | 115 'plugin_ppp_instance_rpc_server.cc', |
| 115 'plugin_ppp_rpc_server.cc', | 116 'plugin_ppp_rpc_server.cc', |
| 116 'plugin_resource.cc', | 117 'plugin_resource.cc', |
| 117 'plugin_resource_tracker.cc', | 118 'plugin_resource_tracker.cc', |
| 118 'plugin_surface_3d.cc', | 119 'plugin_surface_3d.cc', |
| 119 'plugin_upcall.cc', | 120 'plugin_upcall.cc', |
| 120 'utility.cc', | 121 'utility.cc', |
| 121 # Autogenerated files | 122 # Autogenerated files |
| 122 'ppp_rpc_server.cc', | 123 'ppp_rpc_server.cc', |
| 123 'ppb_rpc_client.cc', | 124 'ppb_rpc_client.cc', |
| 124 'upcall_client.cc' | 125 'upcall_client.cc' |
| 125 ] + command_buffer_srcs) | 126 ] + command_buffer_srcs) |
| 126 | 127 |
| 127 env.Depends('ppruntime', 'srpc_untrusted') | 128 env.Depends('ppruntime', 'srpc_untrusted') |
| 128 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 129 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
| 129 env.AddLibraryToSdk(['ppruntime']) | 130 env.AddLibraryToSdk(['ppruntime']) |
| 130 | 131 |
| 131 # Clients that overload main() will use ppruntime.h. | 132 # Clients that overload main() will use ppruntime.h. |
| 132 env.Requires('ppruntime', header_install) | 133 env.Requires('ppruntime', header_install) |
| OLD | NEW |