OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'includes': [ |
| 7 '../../../../../native_client/build/common.gypi', |
| 8 ], |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'nacl_ppapi_browser', |
| 12 'type': 'static_library', |
| 13 'sources': [ |
| 14 'browser_callback.cc', |
| 15 'browser_globals.cc', |
| 16 'browser_nacl_file_rpc_server.cc', |
| 17 'browser_ppb_audio_rpc_server.cc', |
| 18 'browser_ppb_audio_config_rpc_server.cc', |
| 19 'browser_ppb_core_rpc_server.cc', |
| 20 'browser_ppb_cursor_control_rpc_server.cc', |
| 21 'browser_ppb_file_io_rpc_server.cc', |
| 22 'browser_ppb_file_ref_rpc_server.cc', |
| 23 'browser_ppb_file_system_rpc_server.cc', |
| 24 'browser_ppb_find_rpc_server.cc', |
| 25 'browser_ppb_font_rpc_server.cc', |
| 26 'browser_ppb_graphics_2d_rpc_server.cc', |
| 27 'browser_ppb_graphics_3d_rpc_server.cc', |
| 28 'browser_ppb_image_data_rpc_server.cc', |
| 29 'browser_ppb_input_event_rpc_server.cc', |
| 30 'browser_ppb_instance_rpc_server.cc', |
| 31 'browser_ppb_messaging_rpc_server.cc', |
| 32 'browser_ppb_pdf_rpc_server.cc', |
| 33 'browser_ppb_rpc_server.cc', |
| 34 'browser_ppb_scrollbar_rpc_server.cc', |
| 35 'browser_ppb_testing_rpc_server.cc', |
| 36 'browser_ppb_url_loader_rpc_server.cc', |
| 37 'browser_ppb_url_request_info_rpc_server.cc', |
| 38 'browser_ppb_url_response_info_rpc_server.cc', |
| 39 'browser_ppb_widget_rpc_server.cc', |
| 40 'browser_ppb_zoom_rpc_server.cc', |
| 41 'browser_ppp_find.cc', |
| 42 'browser_ppp_input_event.cc', |
| 43 'browser_ppp_instance.cc', |
| 44 'browser_ppp_messaging.cc', |
| 45 'browser_ppp_printing.cc', |
| 46 'browser_ppp_scrollbar.cc', |
| 47 'browser_ppp_selection.cc', |
| 48 'browser_ppp_widget.cc', |
| 49 'browser_ppp_zoom.cc', |
| 50 'browser_ppp.cc', |
| 51 'browser_upcall.cc', |
| 52 'input_event_data.cc', |
| 53 'object_serialize.cc', |
| 54 'utility.cc', |
| 55 # Autogerated files |
| 56 'ppp_rpc_client.cc', |
| 57 'ppb_rpc_server.cc', |
| 58 'upcall_server.cc', |
| 59 ], |
| 60 'include_dirs': [ |
| 61 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/trusted', |
| 62 '<(DEPTH)/ppapi', |
| 63 ], |
| 64 'dependencies': [ |
| 65 '<(DEPTH)/native_client/src/shared/ppapi/ppapi.gyp:ppapi_c_nacl', |
| 66 ], |
| 67 }, |
| 68 ], |
| 69 } |
OLD | NEW |