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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/build.scons

Issue 9227008: WebSocket Pepper API: SRPC proxy implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase because two ppapi_proxy related CLs are landed Created 8 years, 11 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 # -*- 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'browser_ppb_net_address_private_rpc_server.cc', 57 'browser_ppb_net_address_private_rpc_server.cc',
58 'browser_ppb_pdf_rpc_server.cc', 58 'browser_ppb_pdf_rpc_server.cc',
59 'browser_ppb_rpc_server.cc', 59 'browser_ppb_rpc_server.cc',
60 'browser_ppb_scrollbar_rpc_server.cc', 60 'browser_ppb_scrollbar_rpc_server.cc',
61 'browser_ppb_tcp_socket_private_rpc_server.cc', 61 'browser_ppb_tcp_socket_private_rpc_server.cc',
62 'browser_ppb_testing_rpc_server.cc', 62 'browser_ppb_testing_rpc_server.cc',
63 'browser_ppb_udp_socket_private_rpc_server.cc', 63 'browser_ppb_udp_socket_private_rpc_server.cc',
64 'browser_ppb_url_loader_rpc_server.cc', 64 'browser_ppb_url_loader_rpc_server.cc',
65 'browser_ppb_url_request_info_rpc_server.cc', 65 'browser_ppb_url_request_info_rpc_server.cc',
66 'browser_ppb_url_response_info_rpc_server.cc', 66 'browser_ppb_url_response_info_rpc_server.cc',
67 'browser_ppb_websocket_rpc_server.cc',
67 'browser_ppb_widget_rpc_server.cc', 68 'browser_ppb_widget_rpc_server.cc',
68 'browser_ppb_zoom_rpc_server.cc', 69 'browser_ppb_zoom_rpc_server.cc',
69 'browser_ppp_find.cc', 70 'browser_ppp_find.cc',
70 'browser_ppp_input_event.cc', 71 'browser_ppp_input_event.cc',
71 'browser_ppp_instance.cc', 72 'browser_ppp_instance.cc',
72 'browser_ppp_messaging.cc', 73 'browser_ppp_messaging.cc',
73 'browser_ppp_mouse_lock.cc', 74 'browser_ppp_mouse_lock.cc',
74 'browser_ppp_printing.cc', 75 'browser_ppp_printing.cc',
75 'browser_ppp_scrollbar.cc', 76 'browser_ppp_scrollbar.cc',
76 'browser_ppp_selection.cc', 77 'browser_ppp_selection.cc',
(...skipping 11 matching lines...) Expand all
88 common_obj,]) 89 common_obj,])
89 90
90 91
91 # The PPAPI RPCs are specified abstractly via .srpc files. 92 # The PPAPI RPCs are specified abstractly via .srpc files.
92 # Add new .srpc files to the appropriate list in run_srpcgen.py 93 # Add new .srpc files to the appropriate list in run_srpcgen.py
93 # and then run that script. 94 # and then run that script.
94 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. 95 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/.
95 # The generated files must be committed when changes are made to .srpc files. 96 # The generated files must be committed when changes are made to .srpc files.
96 # 97 #
97 # run_srpcgen.py --diff_mode verifies that these files are not out of date. 98 # run_srpcgen.py --diff_mode verifies that these files are not out of date.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698