OLD | NEW |
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 { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 'upcall_server.cc', | 61 'upcall_server.cc', |
62 ], | 62 ], |
63 'include_dirs': [ | 63 'include_dirs': [ |
64 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/trusted', | 64 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/trusted', |
65 '<(DEPTH)/ppapi', | 65 '<(DEPTH)/ppapi', |
66 ], | 66 ], |
67 'dependencies': [ | 67 'dependencies': [ |
68 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', | 68 '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', |
69 ], | 69 ], |
70 }, | 70 }, |
71 { | |
72 'target_name': 'ppruntime_lib', | |
73 'type': 'none', | |
74 'variables': { | |
75 'nlib_target': 'libppruntime.a', | |
76 'build_glibc': 0, | |
77 'build_newlib': 1, | |
78 'include_dirs': [ | |
79 '<(DEPTH)/gpu', | |
80 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', | |
81 ], | |
82 'sources': [ | |
83 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', | |
84 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_format.cc', | |
85 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_utils.cc', | |
86 '<(DEPTH)/gpu/command_buffer/common/logging.cc', | |
87 | |
88 '<(DEPTH)/gpu/command_buffer/client/cmd_buffer_helper.cc', | |
89 '<(DEPTH)/gpu/command_buffer/client/fenced_allocator.cc', | |
90 '<(DEPTH)/gpu/command_buffer/client/gles2_c_lib.cc', | |
91 '<(DEPTH)/gpu/command_buffer/client/gles2_cmd_helper.cc', | |
92 '<(DEPTH)/gpu/command_buffer/client/gles2_implementation.cc', | |
93 '<(DEPTH)/gpu/command_buffer/client/program_info_manager.cc', | |
94 '<(DEPTH)/gpu/command_buffer/client/gles2_lib.cc', | |
95 '<(DEPTH)/gpu/command_buffer/client/mapped_memory.cc', | |
96 '<(DEPTH)/gpu/command_buffer/client/ring_buffer.cc', | |
97 '<(DEPTH)/gpu/command_buffer/common/id_allocator.cc', | |
98 | |
99 'command_buffer_nacl.cc', | |
100 'input_event_data.cc', | |
101 'object_serialize.cc', | |
102 'plugin_callback.cc', | |
103 'plugin_globals.cc', | |
104 'plugin_instance_data.cc', | |
105 'plugin_main.cc', | |
106 'plugin_nacl_file.cc', | |
107 'plugin_opengles.cc', | |
108 'plugin_ppb.cc', | |
109 'plugin_ppb_audio.cc', | |
110 'plugin_ppb_audio_config.cc', | |
111 'plugin_ppb_buffer.cc', | |
112 'plugin_ppb_core.cc', | |
113 'plugin_ppb_cursor_control.cc', | |
114 'plugin_ppb_file_io.cc', | |
115 'plugin_ppb_file_system.cc', | |
116 'plugin_ppb_file_ref.cc', | |
117 'plugin_ppb_find.cc', | |
118 'plugin_ppb_font.cc', | |
119 'plugin_ppb_fullscreen.cc', | |
120 'plugin_ppb_graphics_2d.cc', | |
121 'plugin_ppb_graphics_3d.cc', | |
122 'plugin_ppb_image_data.cc', | |
123 'plugin_ppb_input_event.cc', | |
124 'plugin_ppb_instance.cc', | |
125 'plugin_ppb_memory.cc', | |
126 'plugin_ppb_messaging.cc', | |
127 'plugin_ppb_mouse_lock.cc', | |
128 'plugin_ppb_pdf.cc', | |
129 'plugin_ppb_scrollbar.cc', | |
130 'plugin_ppb_testing.cc', | |
131 'plugin_ppb_url_loader.cc', | |
132 'plugin_ppb_url_request_info.cc', | |
133 'plugin_ppb_url_response_info.cc', | |
134 'plugin_ppb_var.cc', | |
135 'plugin_ppb_widget.cc', | |
136 'plugin_ppb_zoom.cc', | |
137 'plugin_ppp_find_rpc_server.cc', | |
138 'plugin_ppp_input_event_rpc_server.cc', | |
139 'plugin_ppp_instance_rpc_server.cc', | |
140 'plugin_ppp_messaging_rpc_server.cc', | |
141 'plugin_ppp_mouse_lock_rpc_server.cc', | |
142 'plugin_ppp_printing_rpc_server.cc', | |
143 'plugin_ppp_scrollbar_rpc_server.cc', | |
144 'plugin_ppp_selection_rpc_server.cc', | |
145 'plugin_ppp_widget_rpc_server.cc', | |
146 'plugin_ppp_zoom_rpc_server.cc', | |
147 'plugin_ppp_rpc_server.cc', | |
148 'plugin_resource.cc', | |
149 'plugin_resource_tracker.cc', | |
150 'plugin_threading.cc', | |
151 'plugin_upcall.cc', | |
152 'proxy_var.cc', | |
153 'proxy_var_cache.cc', | |
154 'utility.cc', | |
155 # Autogenerated files | |
156 'ppp_rpc_server.cc', | |
157 'ppb_rpc_client.cc', | |
158 'upcall_client.cc' | |
159 ], | |
160 }, | |
161 }, | |
162 ], | 71 ], |
163 } | 72 } |
OLD | NEW |