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

Side by Side Diff: src/shared/ppapi_proxy/ppapi_proxy.gyp

Issue 7395005: Proxy PPB_Input_Event, PPP_Input_Event, and associated IFs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: copyright headers Created 9 years, 5 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 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../../../build/common.gypi', 7 '../../../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'nacl_ppapi_browser', 11 'target_name': 'nacl_ppapi_browser',
12 'type': 'static_library', 12 'type': 'static_library',
13 'sources': [ 13 'sources': [
14 'browser_callback.cc', 14 'browser_callback.cc',
15 'browser_globals.cc', 15 'browser_globals.cc',
16 'browser_graphics_3d.cc', 16 'browser_graphics_3d.cc',
17 'browser_nacl_file_rpc_server.cc', 17 'browser_nacl_file_rpc_server.cc',
18 'browser_ppb_audio_rpc_server.cc', 18 'browser_ppb_audio_rpc_server.cc',
19 'browser_ppb_audio_config_rpc_server.cc', 19 'browser_ppb_audio_config_rpc_server.cc',
20 'browser_ppb_core_rpc_server.cc', 20 'browser_ppb_core_rpc_server.cc',
21 'browser_ppb_cursor_control_rpc_server.cc', 21 'browser_ppb_cursor_control_rpc_server.cc',
22 'browser_ppb_file_io_rpc_server.cc', 22 'browser_ppb_file_io_rpc_server.cc',
23 'browser_ppb_file_system_rpc_server.cc', 23 'browser_ppb_file_system_rpc_server.cc',
24 'browser_ppb_find_rpc_server.cc', 24 'browser_ppb_find_rpc_server.cc',
25 'browser_ppb_font_rpc_server.cc', 25 'browser_ppb_font_rpc_server.cc',
26 'browser_ppb_graphics_2d_rpc_server.cc', 26 'browser_ppb_graphics_2d_rpc_server.cc',
27 'browser_ppb_image_data_rpc_server.cc', 27 'browser_ppb_image_data_rpc_server.cc',
28 'browser_ppb_input_event_rpc_server.cc',
28 'browser_ppb_instance_rpc_server.cc', 29 'browser_ppb_instance_rpc_server.cc',
29 'browser_ppb_messaging_rpc_server.cc', 30 'browser_ppb_messaging_rpc_server.cc',
30 'browser_ppb_pdf_rpc_server.cc', 31 'browser_ppb_pdf_rpc_server.cc',
31 'browser_ppb_rpc_server.cc', 32 'browser_ppb_rpc_server.cc',
32 'browser_ppb_scrollbar_rpc_server.cc', 33 'browser_ppb_scrollbar_rpc_server.cc',
33 'browser_ppb_testing_rpc_server.cc', 34 'browser_ppb_testing_rpc_server.cc',
34 'browser_ppb_url_loader_rpc_server.cc', 35 'browser_ppb_url_loader_rpc_server.cc',
35 'browser_ppb_url_request_info_rpc_server.cc', 36 'browser_ppb_url_request_info_rpc_server.cc',
36 'browser_ppb_url_response_info_rpc_server.cc', 37 'browser_ppb_url_response_info_rpc_server.cc',
37 'browser_ppb_widget_rpc_server.cc', 38 'browser_ppb_widget_rpc_server.cc',
38 'browser_ppb_zoom_rpc_server.cc', 39 'browser_ppb_zoom_rpc_server.cc',
39 'browser_ppp_find.cc', 40 'browser_ppp_find.cc',
41 'browser_ppp_input_event.cc',
40 'browser_ppp_instance.cc', 42 'browser_ppp_instance.cc',
41 'browser_ppp_messaging.cc', 43 'browser_ppp_messaging.cc',
42 'browser_ppp_printing.cc', 44 'browser_ppp_printing.cc',
43 'browser_ppp_scrollbar.cc', 45 'browser_ppp_scrollbar.cc',
44 'browser_ppp_selection.cc', 46 'browser_ppp_selection.cc',
45 'browser_ppp_widget.cc', 47 'browser_ppp_widget.cc',
46 'browser_ppp_zoom.cc', 48 'browser_ppp_zoom.cc',
47 'browser_ppp.cc', 49 'browser_ppp.cc',
48 'browser_upcall.cc', 50 'browser_upcall.cc',
51 'input_event_data.cc',
49 'object_serialize.cc', 52 'object_serialize.cc',
50 'utility.cc', 53 'utility.cc',
51 # Autogerated files 54 # Autogerated files
52 'ppp_rpc_client.cc', 55 'ppp_rpc_client.cc',
53 'ppb_rpc_server.cc', 56 'ppb_rpc_server.cc',
54 'upcall_server.cc', 57 'upcall_server.cc',
55 ], 58 ],
56 'include_dirs': [ 59 'include_dirs': [
57 '<(DEPTH)/native_client/src/shared/ppapi_proxy/trusted', 60 '<(DEPTH)/native_client/src/shared/ppapi_proxy/trusted',
58 ], 61 ],
59 'dependencies': [ 62 'dependencies': [
60 '<(DEPTH)/native_client/src/shared/ppapi/ppapi.gyp:ppapi_c_nacl', 63 '<(DEPTH)/native_client/src/shared/ppapi/ppapi.gyp:ppapi_c_nacl',
61 ], 64 ],
62 }, 65 },
63 ], 66 ],
64 } 67 }
OLDNEW
« no previous file with comments | « src/shared/ppapi_proxy/plugin_resource_tracker.cc ('k') | src/shared/ppapi_proxy/ppb_input_event.srpc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698