OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use 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 # 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'ppb_fullscreen.srpc', | 60 'ppb_fullscreen.srpc', |
61 'ppb_graphics_2d.srpc', | 61 'ppb_graphics_2d.srpc', |
62 'ppb_graphics_3d.srpc', | 62 'ppb_graphics_3d.srpc', |
63 'ppb_image_data.srpc', | 63 'ppb_image_data.srpc', |
64 'ppb_input_event.srpc', | 64 'ppb_input_event.srpc', |
65 'ppb_instance.srpc', | 65 'ppb_instance.srpc', |
66 'ppb_messaging.srpc', | 66 'ppb_messaging.srpc', |
67 'ppb_mouse_lock.srpc', | 67 'ppb_mouse_lock.srpc', |
68 'ppb_pdf.srpc', | 68 'ppb_pdf.srpc', |
69 'ppb_scrollbar.srpc', | 69 'ppb_scrollbar.srpc', |
| 70 'ppb_tcp_socket_private.srpc', |
70 'ppb_testing.srpc', | 71 'ppb_testing.srpc', |
| 72 'ppb_udp_socket_private.srpc', |
71 'ppb_url_loader.srpc', | 73 'ppb_url_loader.srpc', |
72 'ppb_url_request_info.srpc', | 74 'ppb_url_request_info.srpc', |
73 'ppb_url_response_info.srpc', | 75 'ppb_url_response_info.srpc', |
74 'ppb_widget.srpc', | 76 'ppb_widget.srpc', |
75 'ppb_zoom.srpc', | 77 'ppb_zoom.srpc', |
76 ], | 78 ], |
77 name='PpbRpcs', | 79 name='PpbRpcs', |
78 h_file='ppb_rpc.h', | 80 h_file='ppb_rpc.h', |
79 cc_file='ppb_rpc_client.cc', | 81 cc_file='ppb_rpc_client.cc', |
80 guard='GEN_PPAPI_PROXY_PPB_RPC_H_', | 82 guard='GEN_PPAPI_PROXY_PPB_RPC_H_', |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'plugin_ppb_graphics_2d.cc', | 137 'plugin_ppb_graphics_2d.cc', |
136 'plugin_ppb_graphics_3d.cc', | 138 'plugin_ppb_graphics_3d.cc', |
137 'plugin_ppb_image_data.cc', | 139 'plugin_ppb_image_data.cc', |
138 'plugin_ppb_input_event.cc', | 140 'plugin_ppb_input_event.cc', |
139 'plugin_ppb_instance.cc', | 141 'plugin_ppb_instance.cc', |
140 'plugin_ppb_memory.cc', | 142 'plugin_ppb_memory.cc', |
141 'plugin_ppb_messaging.cc', | 143 'plugin_ppb_messaging.cc', |
142 'plugin_ppb_mouse_lock.cc', | 144 'plugin_ppb_mouse_lock.cc', |
143 'plugin_ppb_pdf.cc', | 145 'plugin_ppb_pdf.cc', |
144 'plugin_ppb_scrollbar.cc', | 146 'plugin_ppb_scrollbar.cc', |
| 147 'plugin_ppb_tcp_socket_private.cc', |
145 'plugin_ppb_testing.cc', | 148 'plugin_ppb_testing.cc', |
| 149 'plugin_ppb_udp_socket_private.cc', |
146 'plugin_ppb_url_loader.cc', | 150 'plugin_ppb_url_loader.cc', |
147 'plugin_ppb_url_request_info.cc', | 151 'plugin_ppb_url_request_info.cc', |
148 'plugin_ppb_url_response_info.cc', | 152 'plugin_ppb_url_response_info.cc', |
149 'plugin_ppb_var.cc', | 153 'plugin_ppb_var.cc', |
150 'plugin_ppb_widget.cc', | 154 'plugin_ppb_widget.cc', |
151 'plugin_ppb_zoom.cc', | 155 'plugin_ppb_zoom.cc', |
152 'plugin_ppp_find_rpc_server.cc', | 156 'plugin_ppp_find_rpc_server.cc', |
153 'plugin_ppp_input_event_rpc_server.cc', | 157 'plugin_ppp_input_event_rpc_server.cc', |
154 'plugin_ppp_instance_rpc_server.cc', | 158 'plugin_ppp_instance_rpc_server.cc', |
155 'plugin_ppp_messaging_rpc_server.cc', | 159 'plugin_ppp_messaging_rpc_server.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
175 'srpc', | 179 'srpc', |
176 'gio', | 180 'gio', |
177 'platform', | 181 'platform', |
178 ]) | 182 ]) |
179 | 183 |
180 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 184 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
181 env.AddLibraryToSdk(libppruntime) | 185 env.AddLibraryToSdk(libppruntime) |
182 | 186 |
183 # Clients that overload main() will use ppruntime.h. | 187 # Clients that overload main() will use ppruntime.h. |
184 env.Requires(libppruntime, header_install) | 188 env.Requires(libppruntime, header_install) |
OLD | NEW |