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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'plugin_ppb_mouse_lock.cc', | 144 'plugin_ppb_mouse_lock.cc', |
145 'plugin_ppb_pdf.cc', | 145 'plugin_ppb_pdf.cc', |
146 'plugin_ppb_scrollbar.cc', | 146 'plugin_ppb_scrollbar.cc', |
147 'plugin_ppb_tcp_socket_private.cc', | 147 'plugin_ppb_tcp_socket_private.cc', |
148 'plugin_ppb_testing.cc', | 148 'plugin_ppb_testing.cc', |
149 'plugin_ppb_udp_socket_private.cc', | 149 'plugin_ppb_udp_socket_private.cc', |
150 'plugin_ppb_url_loader.cc', | 150 'plugin_ppb_url_loader.cc', |
151 'plugin_ppb_url_request_info.cc', | 151 'plugin_ppb_url_request_info.cc', |
152 'plugin_ppb_url_response_info.cc', | 152 'plugin_ppb_url_response_info.cc', |
153 'plugin_ppb_var.cc', | 153 'plugin_ppb_var.cc', |
| 154 'plugin_ppb_view.cc', |
154 'plugin_ppb_widget.cc', | 155 'plugin_ppb_widget.cc', |
155 'plugin_ppb_zoom.cc', | 156 'plugin_ppb_zoom.cc', |
156 'plugin_ppp_find_rpc_server.cc', | 157 'plugin_ppp_find_rpc_server.cc', |
157 'plugin_ppp_input_event_rpc_server.cc', | 158 'plugin_ppp_input_event_rpc_server.cc', |
158 'plugin_ppp_instance_rpc_server.cc', | 159 'plugin_ppp_instance_rpc_server.cc', |
159 'plugin_ppp_messaging_rpc_server.cc', | 160 'plugin_ppp_messaging_rpc_server.cc', |
160 'plugin_ppp_mouse_lock_rpc_server.cc', | 161 'plugin_ppp_mouse_lock_rpc_server.cc', |
161 'plugin_ppp_printing_rpc_server.cc', | 162 'plugin_ppp_printing_rpc_server.cc', |
162 'plugin_ppp_scrollbar_rpc_server.cc', | 163 'plugin_ppp_scrollbar_rpc_server.cc', |
163 'plugin_ppp_selection_rpc_server.cc', | 164 'plugin_ppp_selection_rpc_server.cc', |
164 'plugin_ppp_widget_rpc_server.cc', | 165 'plugin_ppp_widget_rpc_server.cc', |
165 'plugin_ppp_zoom_rpc_server.cc', | 166 'plugin_ppp_zoom_rpc_server.cc', |
166 'plugin_ppp_rpc_server.cc', | 167 'plugin_ppp_rpc_server.cc', |
167 'plugin_resource.cc', | 168 'plugin_resource.cc', |
168 'plugin_resource_tracker.cc', | 169 'plugin_resource_tracker.cc', |
169 'plugin_threading.cc', | 170 'plugin_threading.cc', |
170 'plugin_upcall.cc', | 171 'plugin_upcall.cc', |
| 172 'ppp_instance_combined.cc', |
171 'proxy_var.cc', | 173 'proxy_var.cc', |
172 'proxy_var_cache.cc', | 174 'proxy_var_cache.cc', |
173 'utility.cc', | 175 'utility.cc', |
| 176 'view_data.cc', |
174 # Autogenerated files | 177 # Autogenerated files |
175 'ppp_rpc_server.cc', | 178 'ppp_rpc_server.cc', |
176 'ppb_rpc_client.cc', | 179 'ppb_rpc_client.cc', |
177 'upcall_client.cc'] + command_buffer_srcs, | 180 'upcall_client.cc'] + command_buffer_srcs, |
178 LIBS=['pthread', | 181 LIBS=['pthread', |
179 'srpc', | 182 'srpc', |
180 'gio', | 183 'gio', |
181 'platform', | 184 'platform', |
182 ]) | 185 ]) |
183 | 186 |
184 header_install = env.AddHeaderToSdk(['ppruntime.h']) | 187 header_install = env.AddHeaderToSdk(['ppruntime.h']) |
185 env.AddLibraryToSdk(libppruntime) | 188 env.AddLibraryToSdk(libppruntime) |
186 | 189 |
187 # Clients that overload main() will use ppruntime.h. | 190 # Clients that overload main() will use ppruntime.h. |
188 env.Requires(libppruntime, header_install) | 191 env.Requires(libppruntime, header_install) |
OLD | NEW |