OLD | NEW |
1 # Copyright (c) 2010 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2010 The Native Client Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 Import('env') | 5 Import('env') |
6 | 6 |
7 # To enable getting the generated include files and sources. | 7 # To enable getting the generated include files and sources. |
8 env.Append(CPPPATH=['${TARGET_ROOT}']) | 8 env.Append(CPPPATH=['${TARGET_ROOT}']) |
9 | 9 |
10 env.Append(CPPDEFINES=['XP_UNIX']) | 10 env.Append(CPPDEFINES=['XP_UNIX']) |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 'plugin_file_io.cc', | 92 'plugin_file_io.cc', |
93 'plugin_file_ref.cc', | 93 'plugin_file_ref.cc', |
94 'plugin_getinterface.cc', | 94 'plugin_getinterface.cc', |
95 'plugin_globals.cc', | 95 'plugin_globals.cc', |
96 'plugin_graphics_2d.cc', | 96 'plugin_graphics_2d.cc', |
97 'plugin_graphics_3d.cc', | 97 'plugin_graphics_3d.cc', |
98 'plugin_image_data.cc', | 98 'plugin_image_data.cc', |
99 'plugin_instance.cc', | 99 'plugin_instance.cc', |
100 'plugin_main.cc', | 100 'plugin_main.cc', |
101 'plugin_ppp_instance_impl.cc', | 101 'plugin_ppp_instance_impl.cc', |
| 102 'plugin_resource.cc', |
| 103 'plugin_resource_tracker.cc', |
102 'plugin_url_loader.cc', | 104 'plugin_url_loader.cc', |
103 'plugin_url_request_info.cc', | 105 'plugin_url_request_info.cc', |
104 'plugin_url_response_info.cc', | 106 'plugin_url_response_info.cc', |
105 'plugin_var.cc', | 107 'plugin_var.cc', |
106 ppb_rpc_cc, | 108 ppb_rpc_cc, |
107 ppp_rpc_cc, | 109 ppp_rpc_cc, |
108 'plugin_ppp_impl.cc', | 110 'plugin_ppp_impl.cc', |
109 upcall_cc, | 111 upcall_cc, |
110 'utility.cc', | 112 'utility.cc', |
111 ]) | 113 ]) |
112 | 114 |
113 env.AddLibraryToSdk(['ppruntime']) | 115 env.AddLibraryToSdk(['ppruntime']) |
OLD | NEW |