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

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

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 years, 4 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'browser_ppb_host_resolver_private_rpc_server.cc', 50 'browser_ppb_host_resolver_private_rpc_server.cc',
51 'browser_ppb_image_data_rpc_server.cc', 51 'browser_ppb_image_data_rpc_server.cc',
52 'browser_ppb_input_event_rpc_server.cc', 52 'browser_ppb_input_event_rpc_server.cc',
53 'browser_ppb_instance_rpc_server.cc', 53 'browser_ppb_instance_rpc_server.cc',
54 'browser_ppb_messaging_rpc_server.cc', 54 'browser_ppb_messaging_rpc_server.cc',
55 'browser_ppb_mouse_cursor_rpc_server.cc', 55 'browser_ppb_mouse_cursor_rpc_server.cc',
56 'browser_ppb_mouse_lock_rpc_server.cc', 56 'browser_ppb_mouse_lock_rpc_server.cc',
57 'browser_ppb_net_address_private_rpc_server.cc', 57 'browser_ppb_net_address_private_rpc_server.cc',
58 'browser_ppb_network_list_private_rpc_server.cc', 58 'browser_ppb_network_list_private_rpc_server.cc',
59 'browser_ppb_network_monitor_private_rpc_server.cc', 59 'browser_ppb_network_monitor_private_rpc_server.cc',
60 'browser_ppb_pdf_rpc_server.cc',
61 'browser_ppb_rpc_server.cc', 60 'browser_ppb_rpc_server.cc',
62 'browser_ppb_scrollbar_rpc_server.cc',
63 'browser_ppb_tcp_server_socket_private_rpc_server.cc', 61 'browser_ppb_tcp_server_socket_private_rpc_server.cc',
64 'browser_ppb_tcp_socket_private_rpc_server.cc', 62 'browser_ppb_tcp_socket_private_rpc_server.cc',
65 'browser_ppb_testing_rpc_server.cc', 63 'browser_ppb_testing_rpc_server.cc',
66 'browser_ppb_udp_socket_private_rpc_server.cc', 64 'browser_ppb_udp_socket_private_rpc_server.cc',
67 'browser_ppb_url_loader_rpc_server.cc', 65 'browser_ppb_url_loader_rpc_server.cc',
68 'browser_ppb_url_request_info_rpc_server.cc', 66 'browser_ppb_url_request_info_rpc_server.cc',
69 'browser_ppb_url_response_info_rpc_server.cc', 67 'browser_ppb_url_response_info_rpc_server.cc',
70 'browser_ppb_websocket_rpc_server.cc', 68 'browser_ppb_websocket_rpc_server.cc',
71 'browser_ppb_widget_rpc_server.cc',
72 'browser_ppb_zoom_rpc_server.cc', 69 'browser_ppb_zoom_rpc_server.cc',
73 'browser_ppp_find.cc', 70 'browser_ppp_find.cc',
74 'browser_ppp_input_event.cc', 71 'browser_ppp_input_event.cc',
75 'browser_ppp_instance.cc', 72 'browser_ppp_instance.cc',
76 'browser_ppp_messaging.cc', 73 'browser_ppp_messaging.cc',
77 'browser_ppp_mouse_lock.cc', 74 'browser_ppp_mouse_lock.cc',
78 'browser_ppp_printing.cc', 75 'browser_ppp_printing.cc',
79 'browser_ppp_scrollbar.cc',
80 'browser_ppp_selection.cc', 76 'browser_ppp_selection.cc',
81 'browser_ppp_widget.cc',
82 'browser_ppp_zoom.cc', 77 'browser_ppp_zoom.cc',
83 'browser_ppp.cc', 78 'browser_ppp.cc',
84 'browser_upcall.cc', 79 'browser_upcall.cc',
85 'input_event_data.cc', 80 'input_event_data.cc',
86 'object_serialize.cc', 81 'object_serialize.cc',
87 # Autogenerated files 82 # Autogenerated files
88 'ppb_rpc_server.cc', 83 'ppb_rpc_server.cc',
89 'ppp_rpc_client.cc', 84 'ppp_rpc_client.cc',
90 'upcall_server.cc', 85 'upcall_server.cc',
91 'view_data.cc', 86 'view_data.cc',
92 common_obj,]) 87 common_obj,])
93 88
94 89
95 # The PPAPI RPCs are specified abstractly via .srpc files. 90 # The PPAPI RPCs are specified abstractly via .srpc files.
96 # 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
97 # and then run that script. 92 # and then run that script.
98 # 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/.
99 # 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.
100 # 95 #
101 # 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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698