OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'ppruntime_lib', | 11 'target_name': 'ppruntime_lib', |
12 'type': 'none', | 12 'type': 'none', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 14 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
15 '<(DEPTH)/media/media_untrusted.gyp:shared_memory_support_untrusted', | 15 '<(DEPTH)/media/media_untrusted.gyp:shared_memory_support_untrusted', |
16 '<(DEPTH)/third_party/khronos/khronos.gyp:khronos_headers', | 16 '<(DEPTH)/third_party/khronos/khronos.gyp:khronos_headers', |
17 ], | 17 ], |
18 'variables': { | 18 'variables': { |
19 'nlib_target': 'libppruntime.a', | 19 'nlib_target': 'libppruntime.a', |
20 'build_glibc': 0, | 20 'build_glibc': 0, |
21 'build_newlib': 1, | 21 'build_newlib': 1, |
22 'include_dirs': [ | 22 'include_dirs': [ |
23 '<(DEPTH)/gpu', | 23 '<(DEPTH)/gpu', |
24 '<(DEPTH)/media', | 24 '<(DEPTH)/media', |
25 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', | 25 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', |
26 ], | 26 ], |
| 27 'defines': [ |
| 28 'NACL_PPAPI_SRPC_PROXY', |
| 29 ], |
27 'sources': [ | 30 'sources': [ |
28 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', | 31 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', |
29 '<(DEPTH)/gpu/command_buffer/common/debug_marker_manager.cc', | 32 '<(DEPTH)/gpu/command_buffer/common/debug_marker_manager.cc', |
30 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_format.cc', | 33 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_format.cc', |
31 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_utils.cc', | 34 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_utils.cc', |
32 '<(DEPTH)/gpu/command_buffer/common/logging.cc', | 35 '<(DEPTH)/gpu/command_buffer/common/logging.cc', |
33 | 36 |
34 '<(DEPTH)/gpu/command_buffer/client/atomicops.cc', | 37 '<(DEPTH)/gpu/command_buffer/client/atomicops.cc', |
35 '<(DEPTH)/gpu/command_buffer/client/buffer_tracker.cc', | 38 '<(DEPTH)/gpu/command_buffer/client/buffer_tracker.cc', |
36 '<(DEPTH)/gpu/command_buffer/client/client_context_state.cc', | 39 '<(DEPTH)/gpu/command_buffer/client/client_context_state.cc', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'view_data.cc', | 116 'view_data.cc', |
114 # Autogenerated files | 117 # Autogenerated files |
115 'ppp_rpc_server.cc', | 118 'ppp_rpc_server.cc', |
116 'ppb_rpc_client.cc', | 119 'ppb_rpc_client.cc', |
117 'upcall_client.cc' | 120 'upcall_client.cc' |
118 ], | 121 ], |
119 }, | 122 }, |
120 }, | 123 }, |
121 ], | 124 ], |
122 } | 125 } |
OLD | NEW |