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

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

Issue 9148044: Add NaCl proxy for pepper gamepad (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing build file entry Created 8 years, 11 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 28 matching lines...) Expand all
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
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698