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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'browser_ppb_graphics_2d_rpc_server.cc', | 48 'browser_ppb_graphics_2d_rpc_server.cc', |
49 'browser_ppb_graphics_3d_rpc_server.cc', | 49 'browser_ppb_graphics_3d_rpc_server.cc', |
50 'browser_ppb_host_resolver_private_rpc_server.cc', | 50 'browser_ppb_host_resolver_private_rpc_server.cc', |
51 'browser_ppb_image_data_rpc_server.cc', | 51 'browser_ppb_image_data_rpc_server.cc', |
52 'browser_ppb_input_event_rpc_server.cc', | 52 'browser_ppb_input_event_rpc_server.cc', |
53 'browser_ppb_instance_rpc_server.cc', | 53 'browser_ppb_instance_rpc_server.cc', |
54 'browser_ppb_messaging_rpc_server.cc', | 54 'browser_ppb_messaging_rpc_server.cc', |
55 'browser_ppb_mouse_cursor_rpc_server.cc', | 55 'browser_ppb_mouse_cursor_rpc_server.cc', |
56 'browser_ppb_mouse_lock_rpc_server.cc', | 56 'browser_ppb_mouse_lock_rpc_server.cc', |
57 'browser_ppb_net_address_private_rpc_server.cc', | 57 'browser_ppb_net_address_private_rpc_server.cc', |
| 58 'browser_ppb_network_list_private_rpc_server.cc', |
| 59 'browser_ppb_network_monitor_private_rpc_server.cc', |
58 'browser_ppb_pdf_rpc_server.cc', | 60 'browser_ppb_pdf_rpc_server.cc', |
59 'browser_ppb_rpc_server.cc', | 61 'browser_ppb_rpc_server.cc', |
60 'browser_ppb_scrollbar_rpc_server.cc', | 62 'browser_ppb_scrollbar_rpc_server.cc', |
61 'browser_ppb_tcp_server_socket_private_rpc_server.cc', | 63 'browser_ppb_tcp_server_socket_private_rpc_server.cc', |
62 'browser_ppb_tcp_socket_private_rpc_server.cc', | 64 'browser_ppb_tcp_socket_private_rpc_server.cc', |
63 'browser_ppb_testing_rpc_server.cc', | 65 'browser_ppb_testing_rpc_server.cc', |
64 'browser_ppb_udp_socket_private_rpc_server.cc', | 66 'browser_ppb_udp_socket_private_rpc_server.cc', |
65 'browser_ppb_url_loader_rpc_server.cc', | 67 'browser_ppb_url_loader_rpc_server.cc', |
66 'browser_ppb_url_request_info_rpc_server.cc', | 68 'browser_ppb_url_request_info_rpc_server.cc', |
67 'browser_ppb_url_response_info_rpc_server.cc', | 69 'browser_ppb_url_response_info_rpc_server.cc', |
(...skipping 22 matching lines...) Expand all Loading... |
90 common_obj,]) | 92 common_obj,]) |
91 | 93 |
92 | 94 |
93 # The PPAPI RPCs are specified abstractly via .srpc files. | 95 # The PPAPI RPCs are specified abstractly via .srpc files. |
94 # Add new .srpc files to the appropriate list in run_srpcgen.py | 96 # Add new .srpc files to the appropriate list in run_srpcgen.py |
95 # and then run that script. | 97 # and then run that script. |
96 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. | 98 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. |
97 # The generated files must be committed when changes are made to .srpc files. | 99 # The generated files must be committed when changes are made to .srpc files. |
98 # | 100 # |
99 # run_srpcgen.py --diff_mode verifies that these files are not out of date. | 101 # run_srpcgen.py --diff_mode verifies that these files are not out of date. |
OLD | NEW |