| OLD | NEW |
| 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_ref_rpc_server.cc', | 23 'browser_ppb_file_ref_rpc_server.cc', |
| 24 'browser_ppb_file_system_rpc_server.cc', | 24 'browser_ppb_file_system_rpc_server.cc', |
| 25 'browser_ppb_find_rpc_server.cc', | 25 'browser_ppb_find_rpc_server.cc', |
| 26 'browser_ppb_font_rpc_server.cc', | 26 'browser_ppb_font_rpc_server.cc', |
| 27 'browser_ppb_graphics_2d_rpc_server.cc', | 27 'browser_ppb_graphics_2d_rpc_server.cc', |
| 28 'browser_ppb_graphics_3d_rpc_server.cc', |
| 28 'browser_ppb_image_data_rpc_server.cc', | 29 'browser_ppb_image_data_rpc_server.cc', |
| 29 'browser_ppb_input_event_rpc_server.cc', | 30 'browser_ppb_input_event_rpc_server.cc', |
| 30 'browser_ppb_instance_rpc_server.cc', | 31 'browser_ppb_instance_rpc_server.cc', |
| 31 'browser_ppb_messaging_rpc_server.cc', | 32 'browser_ppb_messaging_rpc_server.cc', |
| 32 'browser_ppb_pdf_rpc_server.cc', | 33 'browser_ppb_pdf_rpc_server.cc', |
| 33 'browser_ppb_rpc_server.cc', | 34 'browser_ppb_rpc_server.cc', |
| 34 'browser_ppb_scrollbar_rpc_server.cc', | 35 'browser_ppb_scrollbar_rpc_server.cc', |
| 35 'browser_ppb_testing_rpc_server.cc', | 36 'browser_ppb_testing_rpc_server.cc', |
| 36 'browser_ppb_url_loader_rpc_server.cc', | 37 'browser_ppb_url_loader_rpc_server.cc', |
| 37 'browser_ppb_url_request_info_rpc_server.cc', | 38 'browser_ppb_url_request_info_rpc_server.cc', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 59 ], | 60 ], |
| 60 'include_dirs': [ | 61 'include_dirs': [ |
| 61 '<(DEPTH)/native_client/src/shared/ppapi_proxy/trusted', | 62 '<(DEPTH)/native_client/src/shared/ppapi_proxy/trusted', |
| 62 ], | 63 ], |
| 63 'dependencies': [ | 64 'dependencies': [ |
| 64 '<(DEPTH)/native_client/src/shared/ppapi/ppapi.gyp:ppapi_c_nacl', | 65 '<(DEPTH)/native_client/src/shared/ppapi/ppapi.gyp:ppapi_c_nacl', |
| 65 ], | 66 ], |
| 66 }, | 67 }, |
| 67 ], | 68 ], |
| 68 } | 69 } |
| OLD | NEW |