| 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 28 matching lines...) Expand all Loading... |
| 39 'browser_ppb_audio_rpc_server.cc', | 39 'browser_ppb_audio_rpc_server.cc', |
| 40 'browser_ppb_audio_config_rpc_server.cc', | 40 'browser_ppb_audio_config_rpc_server.cc', |
| 41 'browser_ppb_core_rpc_server.cc', | 41 'browser_ppb_core_rpc_server.cc', |
| 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_graphics_2d_rpc_server.cc', | 50 'browser_ppb_graphics_2d_rpc_server.cc', |
| 50 'browser_ppb_graphics_3d_rpc_server.cc', | 51 'browser_ppb_graphics_3d_rpc_server.cc', |
| 51 'browser_ppb_image_data_rpc_server.cc', | 52 'browser_ppb_image_data_rpc_server.cc', |
| 52 'browser_ppb_input_event_rpc_server.cc', | 53 'browser_ppb_input_event_rpc_server.cc', |
| 53 'browser_ppb_instance_rpc_server.cc', | 54 'browser_ppb_instance_rpc_server.cc', |
| 54 'browser_ppb_messaging_rpc_server.cc', | 55 'browser_ppb_messaging_rpc_server.cc', |
| 55 'browser_ppb_mouse_lock_rpc_server.cc', | 56 'browser_ppb_mouse_lock_rpc_server.cc', |
| 56 'browser_ppb_pdf_rpc_server.cc', | 57 'browser_ppb_pdf_rpc_server.cc', |
| 57 'browser_ppb_rpc_server.cc', | 58 'browser_ppb_rpc_server.cc', |
| 58 'browser_ppb_scrollbar_rpc_server.cc', | 59 'browser_ppb_scrollbar_rpc_server.cc', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 86 common_obj,]) | 87 common_obj,]) |
| 87 | 88 |
| 88 | 89 |
| 89 # The PPAPI RPCs are specified abstractly via .srpc files. | 90 # The PPAPI RPCs are specified abstractly via .srpc files. |
| 90 # Add new .srpc files to the appropriate list in run_srpcgen.py | 91 # Add new .srpc files to the appropriate list in run_srpcgen.py |
| 91 # and then run that script. | 92 # and then run that script. |
| 92 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. | 93 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. |
| 93 # The generated files must be committed when changes are made to .srpc files. | 94 # The generated files must be committed when changes are made to .srpc files. |
| 94 # | 95 # |
| 95 # run_srpcgen.py --diff_mode verifies that these files are not out of date. | 96 # run_srpcgen.py --diff_mode verifies that these files are not out of date. |
| OLD | NEW |