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

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

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 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium 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 '../../../../../native_client/build/common.gypi', 7 '../../../../../native_client/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_nacl_file_rpc_server.cc', 16 'browser_nacl_file_rpc_server.cc',
17 'browser_ppb_audio_rpc_server.cc', 17 'browser_ppb_audio_rpc_server.cc',
18 'browser_ppb_audio_config_rpc_server.cc', 18 'browser_ppb_audio_config_rpc_server.cc',
19 'browser_ppb_core_rpc_server.cc', 19 'browser_ppb_core_rpc_server.cc',
20 'browser_ppb_cursor_control_rpc_server.cc', 20 'browser_ppb_cursor_control_rpc_server.cc',
21 'browser_ppb_file_io_rpc_server.cc', 21 'browser_ppb_file_io_rpc_server.cc',
22 'browser_ppb_file_ref_rpc_server.cc', 22 'browser_ppb_file_ref_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_fullscreen_rpc_server.cc', 26 'browser_ppb_fullscreen_rpc_server.cc',
27 'browser_ppb_gamepad_rpc_server.cc',
27 'browser_ppb_graphics_2d_rpc_server.cc', 28 'browser_ppb_graphics_2d_rpc_server.cc',
28 'browser_ppb_graphics_3d_rpc_server.cc', 29 'browser_ppb_graphics_3d_rpc_server.cc',
29 'browser_ppb_image_data_rpc_server.cc', 30 'browser_ppb_image_data_rpc_server.cc',
30 'browser_ppb_input_event_rpc_server.cc', 31 'browser_ppb_input_event_rpc_server.cc',
31 'browser_ppb_instance_rpc_server.cc', 32 'browser_ppb_instance_rpc_server.cc',
32 'browser_ppb_messaging_rpc_server.cc', 33 'browser_ppb_messaging_rpc_server.cc',
33 'browser_ppb_mouse_lock_rpc_server.cc', 34 'browser_ppb_mouse_lock_rpc_server.cc',
34 'browser_ppb_pdf_rpc_server.cc', 35 'browser_ppb_pdf_rpc_server.cc',
35 'browser_ppb_rpc_server.cc', 36 'browser_ppb_rpc_server.cc',
36 'browser_ppb_scrollbar_rpc_server.cc', 37 'browser_ppb_scrollbar_rpc_server.cc',
(...skipping 30 matching lines...) Expand all
67 'include_dirs': [ 68 'include_dirs': [
68 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/trusted', 69 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/trusted',
69 '<(DEPTH)/ppapi', 70 '<(DEPTH)/ppapi',
70 ], 71 ],
71 'dependencies': [ 72 'dependencies': [
72 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', 73 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c',
73 ], 74 ],
74 }, 75 },
75 ], 76 ],
76 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698