| OLD | NEW |
| 1 # Copyright 2009, Google Inc. | 1 # Copyright 2009, Google Inc. |
| 2 # All rights reserved. | 2 # All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'variables': { | 31 'variables': { |
| 32 'common_sources': [ | 32 'common_sources': [ |
| 33 # TODO: we should put a scons file in src/third_party_mod/nacl_plugin | 33 # TODO: we should put a scons file in src/third_party_mod/nacl_plugin |
| 34 # which exports a library which is then linked in. | 34 # which exports a library which is then linked in. |
| 35 # Currently this results inlink time symbol clashes | 35 # Currently this results inlink time symbol clashes |
| 36 '<(DEPTH)/native_client/src/third_party_mod/npapi_plugin/np_entry.cc', | 36 '<(DEPTH)/native_client/src/third_party_mod/npapi_plugin/np_entry.cc', |
| 37 '<(DEPTH)/native_client/src/third_party_mod/npapi_plugin/npn_gate.cc', | 37 '<(DEPTH)/native_client/src/third_party_mod/npapi_plugin/npn_gate.cc', |
| 38 # generic URL-origin / same-domain handling | 38 # generic URL-origin / same-domain handling |
| 39 'origin.cc', | 39 'origin.cc', |
| 40 # Portable plugin code | 40 # Portable plugin code |
| 41 'srpc/browser_interface.cc', | 41 'browser_interface.cc', |
| 42 'srpc/connected_socket.cc', | 42 'connected_socket.cc', |
| 43 'srpc/desc_based_handle.cc', | 43 'desc_based_handle.cc', |
| 44 'srpc/method_map.cc', | 44 'method_map.cc', |
| 45 'srpc/nexe_arch.cc', | 45 'nexe_arch.cc', |
| 46 'srpc/plugin.cc', | 46 'plugin.cc', |
| 47 'srpc/portable_handle.cc', | 47 'portable_handle.cc', |
| 48 'srpc/scriptable_handle.cc', | 48 'scriptable_handle.cc', |
| 49 'srpc/service_runtime.cc', | 49 'service_runtime.cc', |
| 50 'srpc/shared_memory.cc', | 50 'shared_memory.cc', |
| 51 'srpc/socket_address.cc', | 51 'socket_address.cc', |
| 52 'srpc/srpc_client.cc', | 52 'srpc_client.cc', |
| 53 'srpc/srt_socket.cc', | 53 'srt_socket.cc', |
| 54 'srpc/stream_shm_buffer.cc', | 54 'stream_shm_buffer.cc', |
| 55 'srpc/string_encoding.cc', | 55 'string_encoding.cc', |
| 56 'srpc/utility.cc', | 56 'utility.cc', |
| 57 ], | 57 ], |
| 58 'npapi_sources': [ | 58 'npapi_sources': [ |
| 59 # NPAPI specific code | 59 # NPAPI specific code |
| 60 'npapi/async_receive.cc', | 60 'npapi/async_receive.cc', |
| 61 'npapi/browser_impl_npapi.cc', | 61 'npapi/browser_impl_npapi.cc', |
| 62 'npapi/closure.cc', | 62 'npapi/closure.cc', |
| 63 'npapi/multimedia_socket.cc', | 63 'npapi/multimedia_socket.cc', |
| 64 'npapi/npapi_native.cc', | 64 'npapi/npapi_native.cc', |
| 65 'npapi/npp_gate.cc', | 65 'npapi/npp_gate.cc', |
| 66 'npapi/npp_launcher.cc', | 66 'npapi/npp_launcher.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 'link_settings': { | 135 'link_settings': { |
| 136 'libraries': [ | 136 'libraries': [ |
| 137 '-lgdi32.lib', | 137 '-lgdi32.lib', |
| 138 '-luser32.lib', | 138 '-luser32.lib', |
| 139 ], | 139 ], |
| 140 }, | 140 }, |
| 141 }], | 141 }], |
| 142 ], | 142 ], |
| 143 }, | 143 }, |
| 144 } | 144 } |
| OLD | NEW |