| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 os | 6 import os |
| 7 | 7 |
| 8 Import('env') | 8 Import('env') |
| 9 | 9 |
| 10 # To get generated include files. | 10 # To get generated include files. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'browser_ppb_mouse_lock_rpc_server.cc', | 56 'browser_ppb_mouse_lock_rpc_server.cc', |
| 57 'browser_ppb_pdf_rpc_server.cc', | 57 'browser_ppb_pdf_rpc_server.cc', |
| 58 'browser_ppb_rpc_server.cc', | 58 'browser_ppb_rpc_server.cc', |
| 59 'browser_ppb_scrollbar_rpc_server.cc', | 59 'browser_ppb_scrollbar_rpc_server.cc', |
| 60 'browser_ppb_tcp_socket_private_rpc_server.cc', | 60 'browser_ppb_tcp_socket_private_rpc_server.cc', |
| 61 'browser_ppb_testing_rpc_server.cc', | 61 'browser_ppb_testing_rpc_server.cc', |
| 62 'browser_ppb_udp_socket_private_rpc_server.cc', | 62 'browser_ppb_udp_socket_private_rpc_server.cc', |
| 63 'browser_ppb_url_loader_rpc_server.cc', | 63 'browser_ppb_url_loader_rpc_server.cc', |
| 64 'browser_ppb_url_request_info_rpc_server.cc', | 64 'browser_ppb_url_request_info_rpc_server.cc', |
| 65 'browser_ppb_url_response_info_rpc_server.cc', | 65 'browser_ppb_url_response_info_rpc_server.cc', |
| 66 'browser_ppb_websocket_rpc_server.cc', |
| 66 'browser_ppb_widget_rpc_server.cc', | 67 'browser_ppb_widget_rpc_server.cc', |
| 67 'browser_ppb_zoom_rpc_server.cc', | 68 'browser_ppb_zoom_rpc_server.cc', |
| 68 'browser_ppp_find.cc', | 69 'browser_ppp_find.cc', |
| 69 'browser_ppp_input_event.cc', | 70 'browser_ppp_input_event.cc', |
| 70 'browser_ppp_instance.cc', | 71 'browser_ppp_instance.cc', |
| 71 'browser_ppp_messaging.cc', | 72 'browser_ppp_messaging.cc', |
| 72 'browser_ppp_mouse_lock.cc', | 73 'browser_ppp_mouse_lock.cc', |
| 73 'browser_ppp_printing.cc', | 74 'browser_ppp_printing.cc', |
| 74 'browser_ppp_scrollbar.cc', | 75 'browser_ppp_scrollbar.cc', |
| 75 'browser_ppp_selection.cc', | 76 'browser_ppp_selection.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 87 common_obj,]) | 88 common_obj,]) |
| 88 | 89 |
| 89 | 90 |
| 90 # The PPAPI RPCs are specified abstractly via .srpc files. | 91 # The PPAPI RPCs are specified abstractly via .srpc files. |
| 91 # Add new .srpc files to the appropriate list in run_srpcgen.py | 92 # Add new .srpc files to the appropriate list in run_srpcgen.py |
| 92 # and then run that script. | 93 # and then run that script. |
| 93 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. | 94 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. |
| 94 # The generated files must be committed when changes are made to .srpc files. | 95 # The generated files must be committed when changes are made to .srpc files. |
| 95 # | 96 # |
| 96 # run_srpcgen.py --diff_mode verifies that these files are not out of date. | 97 # run_srpcgen.py --diff_mode verifies that these files are not out of date. |
| OLD | NEW |