| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2010 The Native Client Authors. All rights reserved. Use | 2 # Copyright 2010 The Native Client Authors. All rights reserved. Use |
| 3 # of this source code is governed by a BSD-style license that can be | 3 # 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 # To get generated include files. | 8 # To get generated include files. |
| 9 env.Append(CPPPATH = [ '${TARGET_ROOT}' ]) | 9 env.Append(CPPPATH = [ '${TARGET_ROOT}' ]) |
| 10 | 10 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'object_serialize.cc', | 114 'object_serialize.cc', |
| 115 'objectstub_rpc_impl.cc', | 115 'objectstub_rpc_impl.cc', |
| 116 ppb_rpc_cc, | 116 ppb_rpc_cc, |
| 117 ppp_rpc_cc, | 117 ppp_rpc_cc, |
| 118 upcall_cc, | 118 upcall_cc, |
| 119 common_obj,]) | 119 common_obj,]) |
| 120 | 120 |
| 121 | 121 |
| 122 env.DualLibrary('ppapi_plugin', | 122 env.DualLibrary('ppapi_plugin', |
| 123 ['plugin_instance.cc', | 123 ['plugin_instance.cc', |
| 124 'plugin_resource.cc', |
| 125 'plugin_resource_tracker.cc', |
| 124 'plugin_var.cc', | 126 'plugin_var.cc', |
| 125 common_obj]) | 127 common_obj]) |
| OLD | NEW |