| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2011 The Native Client Authors. All rights reserved. | 2 # Copyright 2011 The Native Client 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'browser_ppb_audio_rpc_server.cc', | 108 'browser_ppb_audio_rpc_server.cc', |
| 109 'browser_ppb_audio_config_rpc_server.cc', | 109 'browser_ppb_audio_config_rpc_server.cc', |
| 110 'browser_ppb_core_rpc_server.cc', | 110 'browser_ppb_core_rpc_server.cc', |
| 111 'browser_ppb_cursor_control_rpc_server.cc', | 111 'browser_ppb_cursor_control_rpc_server.cc', |
| 112 'browser_ppb_file_io_rpc_server.cc', | 112 'browser_ppb_file_io_rpc_server.cc', |
| 113 'browser_ppb_file_ref_rpc_server.cc', | 113 'browser_ppb_file_ref_rpc_server.cc', |
| 114 'browser_ppb_file_system_rpc_server.cc', | 114 'browser_ppb_file_system_rpc_server.cc', |
| 115 'browser_ppb_find_rpc_server.cc', | 115 'browser_ppb_find_rpc_server.cc', |
| 116 'browser_ppb_font_rpc_server.cc', | 116 'browser_ppb_font_rpc_server.cc', |
| 117 'browser_ppb_graphics_2d_rpc_server.cc', | 117 'browser_ppb_graphics_2d_rpc_server.cc', |
| 118 'browser_ppb_graphics_3d_rpc_server.cc', |
| 118 'browser_ppb_image_data_rpc_server.cc', | 119 'browser_ppb_image_data_rpc_server.cc', |
| 119 'browser_ppb_input_event_rpc_server.cc', | 120 'browser_ppb_input_event_rpc_server.cc', |
| 120 'browser_ppb_instance_rpc_server.cc', | 121 'browser_ppb_instance_rpc_server.cc', |
| 121 'browser_ppb_messaging_rpc_server.cc', | 122 'browser_ppb_messaging_rpc_server.cc', |
| 122 'browser_ppb_pdf_rpc_server.cc', | 123 'browser_ppb_pdf_rpc_server.cc', |
| 123 'browser_ppb_rpc_server.cc', | 124 'browser_ppb_rpc_server.cc', |
| 124 'browser_ppb_scrollbar_rpc_server.cc', | 125 'browser_ppb_scrollbar_rpc_server.cc', |
| 125 'browser_ppb_testing_rpc_server.cc', | 126 'browser_ppb_testing_rpc_server.cc', |
| 126 'browser_ppb_url_loader_rpc_server.cc', | 127 'browser_ppb_url_loader_rpc_server.cc', |
| 127 'browser_ppb_url_request_info_rpc_server.cc', | 128 'browser_ppb_url_request_info_rpc_server.cc', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 env.Depends(node, Alias('srpcdif')) | 160 env.Depends(node, Alias('srpcdif')) |
| 160 | 161 |
| 161 # Create an alias for the command and add it to the standard small test. | 162 # Create an alias for the command and add it to the standard small test. |
| 162 # This test verifies that the checked in SRPC generated files are | 163 # This test verifies that the checked in SRPC generated files are |
| 163 # actually up to date. We ignore ARM which generates false negatives. | 164 # actually up to date. We ignore ARM which generates false negatives. |
| 164 # This is okay, since all try/builds should reproduce the same result | 165 # This is okay, since all try/builds should reproduce the same result |
| 165 # this is a check on what is in source control, and generated files are | 166 # this is a check on what is in source control, and generated files are |
| 166 # platform independent. | 167 # platform independent. |
| 167 if not env.Bit('target_arm'): | 168 if not env.Bit('target_arm'): |
| 168 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpcgen_test') | 169 env.AddNodeToTestSuite(node, ['small_tests'], 'run_srpcgen_test') |
| OLD | NEW |