| 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 # To enable getting the generated include files and sources. | 8 # To enable getting the generated include files and sources. |
| 9 env.Append(CPPPATH= | 9 env.Append(CPPPATH= |
| 10 ['${SOURCE_ROOT}/native_client/src/shared/ppapi_proxy/untrusted']) | 10 ['${SOURCE_ROOT}/native_client/src/shared/ppapi_proxy/untrusted']) |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 env.UntrustedSrpc(is_client=True, | 35 env.UntrustedSrpc(is_client=True, |
| 36 srpc_files=['objectstub.srpc', | 36 srpc_files=['objectstub.srpc', |
| 37 'ppb.srpc', | 37 'ppb.srpc', |
| 38 'ppb_audio_dev.srpc', | 38 'ppb_audio_dev.srpc', |
| 39 'ppb_audio_config_dev.srpc', | 39 'ppb_audio_config_dev.srpc', |
| 40 'ppb_core.srpc', | 40 'ppb_core.srpc', |
| 41 'ppb_graphics_2d.srpc', | 41 'ppb_graphics_2d.srpc', |
| 42 'ppb_image_data.srpc', | 42 'ppb_image_data.srpc', |
| 43 'ppb_instance.srpc', | 43 'ppb_instance.srpc', |
| 44 'ppb_url_loader.srpc', |
| 44 'ppb_url_request_info.srpc', | 45 'ppb_url_request_info.srpc', |
| 45 'ppb_url_response_info.srpc', | 46 'ppb_url_response_info.srpc', |
| 46 ], | 47 ], |
| 47 name='PpbRpcs', | 48 name='PpbRpcs', |
| 48 h_file='ppb_rpc.h', | 49 h_file='ppb_rpc.h', |
| 49 cc_file='ppb_rpc_client.cc', | 50 cc_file='ppb_rpc_client.cc', |
| 50 guard='GEN_PPAPI_PROXY_PPB_RPC_H_') | 51 guard='GEN_PPAPI_PROXY_PPB_RPC_H_') |
| 51 | 52 |
| 52 env.UntrustedSrpc(is_client=True, | 53 env.UntrustedSrpc(is_client=True, |
| 53 srpc_files=['upcall.srpc'], | 54 srpc_files=['upcall.srpc'], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 68 'plugin_core.cc', | 69 'plugin_core.cc', |
| 69 'plugin_ppb_file_io.cc', | 70 'plugin_ppb_file_io.cc', |
| 70 'plugin_file_ref.cc', | 71 'plugin_file_ref.cc', |
| 71 'plugin_globals.cc', | 72 'plugin_globals.cc', |
| 72 'plugin_graphics_2d.cc', | 73 'plugin_graphics_2d.cc', |
| 73 'plugin_graphics_3d.cc', | 74 'plugin_graphics_3d.cc', |
| 74 'plugin_image_data.cc', | 75 'plugin_image_data.cc', |
| 75 'plugin_main.cc', | 76 'plugin_main.cc', |
| 76 'plugin_ppb_instance.cc', | 77 'plugin_ppb_instance.cc', |
| 77 'plugin_ppb.cc', | 78 'plugin_ppb.cc', |
| 79 'plugin_ppb_url_loader.cc', |
| 78 'plugin_ppb_url_request_info.cc', | 80 'plugin_ppb_url_request_info.cc', |
| 79 'plugin_ppb_url_response_info.cc', | 81 'plugin_ppb_url_response_info.cc', |
| 80 'plugin_ppp_instance_rpc_server.cc', | 82 'plugin_ppp_instance_rpc_server.cc', |
| 81 'plugin_ppp_rpc_server.cc', | 83 'plugin_ppp_rpc_server.cc', |
| 82 'plugin_resource.cc', | 84 'plugin_resource.cc', |
| 83 'plugin_resource_tracker.cc', | 85 'plugin_resource_tracker.cc', |
| 84 'plugin_upcall.cc', | 86 'plugin_upcall.cc', |
| 85 'plugin_url_loader.cc', | |
| 86 'plugin_var.cc', | 87 'plugin_var.cc', |
| 87 'utility.cc', | 88 'utility.cc', |
| 88 # Autogenerated files | 89 # Autogenerated files |
| 89 'ppp_rpc_server.cc', | 90 'ppp_rpc_server.cc', |
| 90 'ppb_rpc_client.cc', | 91 'ppb_rpc_client.cc', |
| 91 'upcall_client.cc' | 92 'upcall_client.cc' |
| 92 ]) | 93 ]) |
| 93 | 94 |
| 94 env.Depends('ppruntime', 'srpc_untrusted') | 95 env.Depends('ppruntime', 'srpc_untrusted') |
| 95 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 96 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
| 96 env.AddLibraryToSdk(['ppruntime']) | 97 env.AddLibraryToSdk(['ppruntime']) |
| 97 | 98 |
| 98 # Clients that overload main() will use ppruntime.h. | 99 # Clients that overload main() will use ppruntime.h. |
| 99 env.Requires('ppruntime', header_install) | 100 env.Requires('ppruntime', header_install) |
| OLD | NEW |