OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'includes': [ |
| 7 '../../../../../native_client/build/common.gypi', |
| 8 ], |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'ppruntime_lib', |
| 12 'type': 'none', |
| 13 'dependencies': [ |
| 14 '<(DEPTH)/native_client/tools.gyp:prep_toolchain' |
| 15 ], |
| 16 'variables': { |
| 17 'nlib_target': 'libppruntime.a', |
| 18 'build_glibc': 0, |
| 19 'build_newlib': 1, |
| 20 'include_dirs': [ |
| 21 '<(DEPTH)/gpu', |
| 22 '<(DEPTH)/third_party/khronos', |
| 23 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', |
| 24 ], |
| 25 'sources': [ |
| 26 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', |
| 27 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_format.cc', |
| 28 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_utils.cc', |
| 29 '<(DEPTH)/gpu/command_buffer/common/logging.cc', |
| 30 |
| 31 '<(DEPTH)/gpu/command_buffer/client/cmd_buffer_helper.cc', |
| 32 '<(DEPTH)/gpu/command_buffer/client/fenced_allocator.cc', |
| 33 '<(DEPTH)/gpu/command_buffer/client/gles2_c_lib.cc', |
| 34 '<(DEPTH)/gpu/command_buffer/client/gles2_cmd_helper.cc', |
| 35 '<(DEPTH)/gpu/command_buffer/client/gles2_implementation.cc', |
| 36 '<(DEPTH)/gpu/command_buffer/client/program_info_manager.cc', |
| 37 '<(DEPTH)/gpu/command_buffer/client/gles2_lib.cc', |
| 38 '<(DEPTH)/gpu/command_buffer/client/mapped_memory.cc', |
| 39 '<(DEPTH)/gpu/command_buffer/client/ring_buffer.cc', |
| 40 '<(DEPTH)/gpu/command_buffer/common/id_allocator.cc', |
| 41 |
| 42 'command_buffer_nacl.cc', |
| 43 'input_event_data.cc', |
| 44 'object_serialize.cc', |
| 45 'plugin_callback.cc', |
| 46 'plugin_globals.cc', |
| 47 'plugin_instance_data.cc', |
| 48 'plugin_main.cc', |
| 49 'plugin_nacl_file.cc', |
| 50 'plugin_opengles.cc', |
| 51 'plugin_ppb.cc', |
| 52 'plugin_ppb_audio.cc', |
| 53 'plugin_ppb_audio_config.cc', |
| 54 'plugin_ppb_buffer.cc', |
| 55 'plugin_ppb_core.cc', |
| 56 'plugin_ppb_cursor_control.cc', |
| 57 'plugin_ppb_file_io.cc', |
| 58 'plugin_ppb_file_system.cc', |
| 59 'plugin_ppb_file_ref.cc', |
| 60 'plugin_ppb_find.cc', |
| 61 'plugin_ppb_font.cc', |
| 62 'plugin_ppb_fullscreen.cc', |
| 63 'plugin_ppb_graphics_2d.cc', |
| 64 'plugin_ppb_graphics_3d.cc', |
| 65 'plugin_ppb_image_data.cc', |
| 66 'plugin_ppb_input_event.cc', |
| 67 'plugin_ppb_instance.cc', |
| 68 'plugin_ppb_memory.cc', |
| 69 'plugin_ppb_messaging.cc', |
| 70 'plugin_ppb_mouse_lock.cc', |
| 71 'plugin_ppb_pdf.cc', |
| 72 'plugin_ppb_scrollbar.cc', |
| 73 'plugin_ppb_tcp_socket_private.cc', |
| 74 'plugin_ppb_testing.cc', |
| 75 'plugin_ppb_udp_socket_private.cc', |
| 76 'plugin_ppb_url_loader.cc', |
| 77 'plugin_ppb_url_request_info.cc', |
| 78 'plugin_ppb_url_response_info.cc', |
| 79 'plugin_ppb_var.cc', |
| 80 'plugin_ppb_widget.cc', |
| 81 'plugin_ppb_zoom.cc', |
| 82 'plugin_ppp_find_rpc_server.cc', |
| 83 'plugin_ppp_input_event_rpc_server.cc', |
| 84 'plugin_ppp_instance_rpc_server.cc', |
| 85 'plugin_ppp_messaging_rpc_server.cc', |
| 86 'plugin_ppp_mouse_lock_rpc_server.cc', |
| 87 'plugin_ppp_printing_rpc_server.cc', |
| 88 'plugin_ppp_scrollbar_rpc_server.cc', |
| 89 'plugin_ppp_selection_rpc_server.cc', |
| 90 'plugin_ppp_widget_rpc_server.cc', |
| 91 'plugin_ppp_zoom_rpc_server.cc', |
| 92 'plugin_ppp_rpc_server.cc', |
| 93 'plugin_resource.cc', |
| 94 'plugin_resource_tracker.cc', |
| 95 'plugin_threading.cc', |
| 96 'plugin_upcall.cc', |
| 97 'proxy_var.cc', |
| 98 'proxy_var_cache.cc', |
| 99 'utility.cc', |
| 100 # Autogenerated files |
| 101 'ppp_rpc_server.cc', |
| 102 'ppb_rpc_client.cc', |
| 103 'upcall_client.cc' |
| 104 ], |
| 105 }, |
| 106 }, |
| 107 ], |
| 108 } |
OLD | NEW |