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 21 matching lines...) Expand all Loading... |
32 | 32 |
33 common_obj = env.DualObject(['utility.cc']) | 33 common_obj = env.DualObject(['utility.cc']) |
34 | 34 |
35 env.DualLibrary('ppapi_browser', | 35 env.DualLibrary('ppapi_browser', |
36 ['browser_callback.cc', | 36 ['browser_callback.cc', |
37 'browser_globals.cc', | 37 'browser_globals.cc', |
38 'browser_nacl_file_rpc_server.cc', | 38 'browser_nacl_file_rpc_server.cc', |
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', | |
43 'browser_ppb_file_io_rpc_server.cc', | 42 'browser_ppb_file_io_rpc_server.cc', |
44 'browser_ppb_file_ref_rpc_server.cc', | 43 'browser_ppb_file_ref_rpc_server.cc', |
45 'browser_ppb_file_system_rpc_server.cc', | 44 'browser_ppb_file_system_rpc_server.cc', |
46 'browser_ppb_find_rpc_server.cc', | 45 'browser_ppb_find_rpc_server.cc', |
47 'browser_ppb_font_rpc_server.cc', | 46 'browser_ppb_font_rpc_server.cc', |
48 'browser_ppb_fullscreen_rpc_server.cc', | 47 'browser_ppb_fullscreen_rpc_server.cc', |
49 'browser_ppb_gamepad_rpc_server.cc', | 48 'browser_ppb_gamepad_rpc_server.cc', |
50 'browser_ppb_graphics_2d_rpc_server.cc', | 49 'browser_ppb_graphics_2d_rpc_server.cc', |
51 'browser_ppb_graphics_3d_rpc_server.cc', | 50 'browser_ppb_graphics_3d_rpc_server.cc', |
52 'browser_ppb_host_resolver_private_rpc_server.cc', | 51 'browser_ppb_host_resolver_private_rpc_server.cc', |
53 'browser_ppb_image_data_rpc_server.cc', | 52 'browser_ppb_image_data_rpc_server.cc', |
54 'browser_ppb_input_event_rpc_server.cc', | 53 'browser_ppb_input_event_rpc_server.cc', |
55 'browser_ppb_instance_rpc_server.cc', | 54 'browser_ppb_instance_rpc_server.cc', |
56 'browser_ppb_messaging_rpc_server.cc', | 55 'browser_ppb_messaging_rpc_server.cc', |
| 56 'browser_ppb_mouse_cursor_rpc_server.cc', |
57 'browser_ppb_mouse_lock_rpc_server.cc', | 57 'browser_ppb_mouse_lock_rpc_server.cc', |
58 'browser_ppb_net_address_private_rpc_server.cc', | 58 'browser_ppb_net_address_private_rpc_server.cc', |
59 'browser_ppb_pdf_rpc_server.cc', | 59 'browser_ppb_pdf_rpc_server.cc', |
60 'browser_ppb_rpc_server.cc', | 60 'browser_ppb_rpc_server.cc', |
61 'browser_ppb_scrollbar_rpc_server.cc', | 61 'browser_ppb_scrollbar_rpc_server.cc', |
62 'browser_ppb_tcp_server_socket_private_rpc_server.cc', | 62 'browser_ppb_tcp_server_socket_private_rpc_server.cc', |
63 'browser_ppb_tcp_socket_private_rpc_server.cc', | 63 'browser_ppb_tcp_socket_private_rpc_server.cc', |
64 'browser_ppb_testing_rpc_server.cc', | 64 'browser_ppb_testing_rpc_server.cc', |
65 'browser_ppb_udp_socket_private_rpc_server.cc', | 65 'browser_ppb_udp_socket_private_rpc_server.cc', |
66 'browser_ppb_url_loader_rpc_server.cc', | 66 'browser_ppb_url_loader_rpc_server.cc', |
(...skipping 24 matching lines...) Expand all Loading... |
91 common_obj,]) | 91 common_obj,]) |
92 | 92 |
93 | 93 |
94 # The PPAPI RPCs are specified abstractly via .srpc files. | 94 # The PPAPI RPCs are specified abstractly via .srpc files. |
95 # Add new .srpc files to the appropriate list in run_srpcgen.py | 95 # Add new .srpc files to the appropriate list in run_srpcgen.py |
96 # and then run that script. | 96 # and then run that script. |
97 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. | 97 # The .cc files are written to ./ and .h files to ./{un,}trusted/srpcgen/. |
98 # The generated files must be committed when changes are made to .srpc files. | 98 # The generated files must be committed when changes are made to .srpc files. |
99 # | 99 # |
100 # run_srpcgen.py --diff_mode verifies that these files are not out of date. | 100 # run_srpcgen.py --diff_mode verifies that these files are not out of date. |
OLD | NEW |