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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'browser_ppb_cursor_control_rpc_server.cc', | 42 'browser_ppb_cursor_control_rpc_server.cc', |
43 'browser_ppb_file_io_rpc_server.cc', | 43 'browser_ppb_file_io_rpc_server.cc', |
44 'browser_ppb_file_ref_rpc_server.cc', | 44 'browser_ppb_file_ref_rpc_server.cc', |
45 'browser_ppb_file_system_rpc_server.cc', | 45 'browser_ppb_file_system_rpc_server.cc', |
46 'browser_ppb_find_rpc_server.cc', | 46 'browser_ppb_find_rpc_server.cc', |
47 'browser_ppb_font_rpc_server.cc', | 47 'browser_ppb_font_rpc_server.cc', |
48 'browser_ppb_fullscreen_rpc_server.cc', | 48 'browser_ppb_fullscreen_rpc_server.cc', |
49 'browser_ppb_gamepad_rpc_server.cc', | 49 'browser_ppb_gamepad_rpc_server.cc', |
50 'browser_ppb_graphics_2d_rpc_server.cc', | 50 'browser_ppb_graphics_2d_rpc_server.cc', |
51 'browser_ppb_graphics_3d_rpc_server.cc', | 51 'browser_ppb_graphics_3d_rpc_server.cc', |
| 52 'browser_ppb_host_resolver_private_rpc_server.cc', |
52 'browser_ppb_image_data_rpc_server.cc', | 53 'browser_ppb_image_data_rpc_server.cc', |
53 'browser_ppb_input_event_rpc_server.cc', | 54 'browser_ppb_input_event_rpc_server.cc', |
54 'browser_ppb_instance_rpc_server.cc', | 55 'browser_ppb_instance_rpc_server.cc', |
55 'browser_ppb_messaging_rpc_server.cc', | 56 'browser_ppb_messaging_rpc_server.cc', |
56 'browser_ppb_mouse_lock_rpc_server.cc', | 57 'browser_ppb_mouse_lock_rpc_server.cc', |
57 'browser_ppb_net_address_private_rpc_server.cc', | 58 'browser_ppb_net_address_private_rpc_server.cc', |
58 'browser_ppb_pdf_rpc_server.cc', | 59 'browser_ppb_pdf_rpc_server.cc', |
59 'browser_ppb_rpc_server.cc', | 60 'browser_ppb_rpc_server.cc', |
60 'browser_ppb_scrollbar_rpc_server.cc', | 61 'browser_ppb_scrollbar_rpc_server.cc', |
61 'browser_ppb_tcp_server_socket_private_rpc_server.cc', | 62 'browser_ppb_tcp_server_socket_private_rpc_server.cc', |
(...skipping 28 matching lines...) Expand all Loading... |
90 common_obj,]) | 91 common_obj,]) |
91 | 92 |
92 | 93 |
93 # The PPAPI RPCs are specified abstractly via .srpc files. | 94 # The PPAPI RPCs are specified abstractly via .srpc files. |
94 # Add new .srpc files to the appropriate list in run_srpcgen.py | 95 # Add new .srpc files to the appropriate list in run_srpcgen.py |
95 # and then run that script. | 96 # and then run that script. |
96 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. | 97 # 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. | 98 # The generated files must be committed when changes are made to .srpc files. |
98 # | 99 # |
99 # run_srpcgen.py --diff_mode verifies that these files are not out of date. | 100 # run_srpcgen.py --diff_mode verifies that these files are not out of date. |
OLD | NEW |