Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/run_srpcgen.py

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env 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 """Driver of srpcgen for ppapi_proxy sources. 6 """Driver of srpcgen for ppapi_proxy sources.
7 7
8 This must be run after modifying, adding, or removing .srpc files. 8 This must be run after modifying, adding, or removing .srpc files.
9 The lists of .srpc files are in this source file. 9 The lists of .srpc files are in this source file.
10 """ 10 """
(...skipping 29 matching lines...) Expand all
40 'completion_callback.srpc', 40 'completion_callback.srpc',
41 'ppp.srpc', 41 'ppp.srpc',
42 'ppp_audio.srpc', 42 'ppp_audio.srpc',
43 'ppp_find.srpc', 43 'ppp_find.srpc',
44 'ppp_input_event.srpc', 44 'ppp_input_event.srpc',
45 'ppp_instance.srpc', 45 'ppp_instance.srpc',
46 'ppp_messaging.srpc', 46 'ppp_messaging.srpc',
47 'ppp_mouse_lock.srpc', 47 'ppp_mouse_lock.srpc',
48 'ppp_network_monitor_private.srpc', 48 'ppp_network_monitor_private.srpc',
49 'ppp_printing.srpc', 49 'ppp_printing.srpc',
50 'ppp_scrollbar.srpc',
51 'ppp_selection.srpc', 50 'ppp_selection.srpc',
52 'ppp_widget.srpc',
53 'ppp_zoom.srpc', 51 'ppp_zoom.srpc',
54 ]}, 52 ]},
55 {'trusted_is_client': False, 53 {'trusted_is_client': False,
56 'client_thread_check': True, 54 'client_thread_check': True,
57 'name': 'PpbRpcs', 55 'name': 'PpbRpcs',
58 'file_basename': 'ppb_rpc', 56 'file_basename': 'ppb_rpc',
59 'srpc_files': [ 57 'srpc_files': [
60 'ppb.srpc', 58 'ppb.srpc',
61 'ppb_audio.srpc', 59 'ppb_audio.srpc',
62 'ppb_audio_config.srpc', 60 'ppb_audio_config.srpc',
(...skipping 10 matching lines...) Expand all
73 'ppb_host_resolver_private.srpc', 71 'ppb_host_resolver_private.srpc',
74 'ppb_image_data.srpc', 72 'ppb_image_data.srpc',
75 'ppb_input_event.srpc', 73 'ppb_input_event.srpc',
76 'ppb_instance.srpc', 74 'ppb_instance.srpc',
77 'ppb_messaging.srpc', 75 'ppb_messaging.srpc',
78 'ppb_mouse_cursor.srpc', 76 'ppb_mouse_cursor.srpc',
79 'ppb_mouse_lock.srpc', 77 'ppb_mouse_lock.srpc',
80 'ppb_net_address_private.srpc', 78 'ppb_net_address_private.srpc',
81 'ppb_network_list_private.srpc', 79 'ppb_network_list_private.srpc',
82 'ppb_network_monitor_private.srpc', 80 'ppb_network_monitor_private.srpc',
83 'ppb_pdf.srpc',
84 'ppb_scrollbar.srpc',
85 'ppb_tcp_server_socket_private.srpc', 81 'ppb_tcp_server_socket_private.srpc',
86 'ppb_tcp_socket_private.srpc', 82 'ppb_tcp_socket_private.srpc',
87 'ppb_testing.srpc', 83 'ppb_testing.srpc',
88 'ppb_udp_socket_private.srpc', 84 'ppb_udp_socket_private.srpc',
89 'ppb_url_loader.srpc', 85 'ppb_url_loader.srpc',
90 'ppb_url_request_info.srpc', 86 'ppb_url_request_info.srpc',
91 'ppb_url_response_info.srpc', 87 'ppb_url_response_info.srpc',
92 'ppb_websocket.srpc', 88 'ppb_websocket.srpc',
93 'ppb_widget.srpc',
94 'ppb_zoom.srpc', 89 'ppb_zoom.srpc',
95 ]}, 90 ]},
96 {'trusted_is_client': False, 91 {'trusted_is_client': False,
97 'name': 'PpbUpcalls', 92 'name': 'PpbUpcalls',
98 'file_basename': 'upcall', 93 'file_basename': 'upcall',
99 'srpc_files': [ 94 'srpc_files': [
100 'upcall.srpc', 95 'upcall.srpc',
101 ]}, 96 ]},
102 ] 97 ]
103 98
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'srpcgen.py')) 200 'srpcgen.py'))
206 201
207 if args: 202 if args:
208 parser.print_help() 203 parser.print_help()
209 return 1 204 return 1
210 205
211 return RunAll(options) 206 return RunAll(options)
212 207
213 if __name__ == '__main__': 208 if __name__ == '__main__':
214 sys.exit(Main(sys.argv)) 209 sys.exit(Main(sys.argv))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698