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

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

Issue 8555002: Added NaCl proxy for TCP/UDP (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Deleted PPAPI NaCl tests. Created 9 years 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright 2011 The Chromium Authors. All rights reserved. 2 # Copyright 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'ppb_fullscreen.srpc', 74 'ppb_fullscreen.srpc',
75 'ppb_graphics_2d.srpc', 75 'ppb_graphics_2d.srpc',
76 'ppb_graphics_3d.srpc', 76 'ppb_graphics_3d.srpc',
77 'ppb_image_data.srpc', 77 'ppb_image_data.srpc',
78 'ppb_input_event.srpc', 78 'ppb_input_event.srpc',
79 'ppb_instance.srpc', 79 'ppb_instance.srpc',
80 'ppb_messaging.srpc', 80 'ppb_messaging.srpc',
81 'ppb_mouse_lock.srpc', 81 'ppb_mouse_lock.srpc',
82 'ppb_pdf.srpc', 82 'ppb_pdf.srpc',
83 'ppb_scrollbar.srpc', 83 'ppb_scrollbar.srpc',
84 'ppb_tcp_socket_private.srpc',
84 'ppb_testing.srpc', 85 'ppb_testing.srpc',
86 'ppb_udp_socket_private.srpc',
85 'ppb_url_loader.srpc', 87 'ppb_url_loader.srpc',
86 'ppb_url_request_info.srpc', 88 'ppb_url_request_info.srpc',
87 'ppb_url_response_info.srpc', 89 'ppb_url_response_info.srpc',
88 'ppb_widget.srpc', 90 'ppb_widget.srpc',
89 'ppb_zoom.srpc', 91 'ppb_zoom.srpc',
90 ], 92 ],
91 name='PpbRpcs', 93 name='PpbRpcs',
92 h_file='ppb_rpc.h', 94 h_file='ppb_rpc.h',
93 cc_file='ppb_rpc_server.cc', 95 cc_file='ppb_rpc_server.cc',
94 guard='GEN_PPAPI_PROXY_PPB_RPC_H_') 96 guard='GEN_PPAPI_PROXY_PPB_RPC_H_')
(...skipping 25 matching lines...) Expand all
120 'browser_ppb_graphics_2d_rpc_server.cc', 122 'browser_ppb_graphics_2d_rpc_server.cc',
121 'browser_ppb_graphics_3d_rpc_server.cc', 123 'browser_ppb_graphics_3d_rpc_server.cc',
122 'browser_ppb_image_data_rpc_server.cc', 124 'browser_ppb_image_data_rpc_server.cc',
123 'browser_ppb_input_event_rpc_server.cc', 125 'browser_ppb_input_event_rpc_server.cc',
124 'browser_ppb_instance_rpc_server.cc', 126 'browser_ppb_instance_rpc_server.cc',
125 'browser_ppb_messaging_rpc_server.cc', 127 'browser_ppb_messaging_rpc_server.cc',
126 'browser_ppb_mouse_lock_rpc_server.cc', 128 'browser_ppb_mouse_lock_rpc_server.cc',
127 'browser_ppb_pdf_rpc_server.cc', 129 'browser_ppb_pdf_rpc_server.cc',
128 'browser_ppb_rpc_server.cc', 130 'browser_ppb_rpc_server.cc',
129 'browser_ppb_scrollbar_rpc_server.cc', 131 'browser_ppb_scrollbar_rpc_server.cc',
132 'browser_ppb_tcp_socket_private_rpc_server.cc',
130 'browser_ppb_testing_rpc_server.cc', 133 'browser_ppb_testing_rpc_server.cc',
134 'browser_ppb_udp_socket_private_rpc_server.cc',
131 'browser_ppb_url_loader_rpc_server.cc', 135 'browser_ppb_url_loader_rpc_server.cc',
132 'browser_ppb_url_request_info_rpc_server.cc', 136 'browser_ppb_url_request_info_rpc_server.cc',
133 'browser_ppb_url_response_info_rpc_server.cc', 137 'browser_ppb_url_response_info_rpc_server.cc',
134 'browser_ppb_widget_rpc_server.cc', 138 'browser_ppb_widget_rpc_server.cc',
135 'browser_ppb_zoom_rpc_server.cc', 139 'browser_ppb_zoom_rpc_server.cc',
136 'browser_ppp_find.cc', 140 'browser_ppp_find.cc',
137 'browser_ppp_input_event.cc', 141 'browser_ppp_input_event.cc',
138 'browser_ppp_instance.cc', 142 'browser_ppp_instance.cc',
139 'browser_ppp_messaging.cc', 143 'browser_ppp_messaging.cc',
140 'browser_ppp_mouse_lock.cc', 144 'browser_ppp_mouse_lock.cc',
(...skipping 24 matching lines...) Expand all
165 env.Depends(node, Alias('srpcdif')) 169 env.Depends(node, Alias('srpcdif'))
166 170
167 # Create an alias for the command and add it to the standard small test. 171 # Create an alias for the command and add it to the standard small test.
168 # This test verifies that the checked in SRPC generated files are 172 # This test verifies that the checked in SRPC generated files are
169 # actually up to date. We ignore ARM which generates false negatives. 173 # actually up to date. We ignore ARM which generates false negatives.
170 # This is okay, since all try/builds should reproduce the same result 174 # This is okay, since all try/builds should reproduce the same result
171 # this is a check on what is in source control, and generated files are 175 # this is a check on what is in source control, and generated files are
172 # platform independent. 176 # platform independent.
173 if not env.Bit('target_arm'): 177 if not env.Bit('target_arm'):
174 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpcgen_test') 178 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpcgen_test')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698