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 ], | 15 ], |
16 'variables': { | 16 'variables': { |
17 'nlib_target': 'libppruntime.a', | 17 'nlib_target': 'libppruntime.a', |
18 'build_glibc': 0, | 18 'build_glibc': 0, |
19 'build_newlib': 1, | 19 'build_newlib': 1, |
20 'include_dirs': [ | 20 'include_dirs': [ |
21 '<(DEPTH)/gpu', | 21 '<(DEPTH)/gpu', |
22 '<(DEPTH)/third_party/khronos', | 22 '<(DEPTH)/third_party/khronos', |
23 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', | 23 '<(DEPTH)/ppapi/native_client/src/shared/ppapi_proxy/untrusted', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', | 26 '<(DEPTH)/gpu/command_buffer/common/cmd_buffer_common.cc', |
| 27 '<(DEPTH)/gpu/command_buffer/common/debug_marker_manager.cc', |
27 '<(DEPTH)/gpu/command_buffer/common/gles2_cmd_format.cc', | 28 '<(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/gles2_cmd_utils.cc', |
29 '<(DEPTH)/gpu/command_buffer/common/logging.cc', | 30 '<(DEPTH)/gpu/command_buffer/common/logging.cc', |
30 | 31 |
31 '<(DEPTH)/gpu/command_buffer/client/atomicops.cc', | 32 '<(DEPTH)/gpu/command_buffer/client/atomicops.cc', |
32 '<(DEPTH)/gpu/command_buffer/client/cmd_buffer_helper.cc', | 33 '<(DEPTH)/gpu/command_buffer/client/cmd_buffer_helper.cc', |
33 '<(DEPTH)/gpu/command_buffer/client/fenced_allocator.cc', | 34 '<(DEPTH)/gpu/command_buffer/client/fenced_allocator.cc', |
34 '<(DEPTH)/gpu/command_buffer/client/gles2_c_lib.cc', | 35 '<(DEPTH)/gpu/command_buffer/client/gles2_c_lib.cc', |
35 '<(DEPTH)/gpu/command_buffer/client/gles2_cmd_helper.cc', | 36 '<(DEPTH)/gpu/command_buffer/client/gles2_cmd_helper.cc', |
36 '<(DEPTH)/gpu/command_buffer/client/gles2_implementation.cc', | 37 '<(DEPTH)/gpu/command_buffer/client/gles2_implementation.cc', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 'view_data.cc', | 110 'view_data.cc', |
110 # Autogenerated files | 111 # Autogenerated files |
111 'ppp_rpc_server.cc', | 112 'ppp_rpc_server.cc', |
112 'ppb_rpc_client.cc', | 113 'ppb_rpc_client.cc', |
113 'upcall_client.cc' | 114 'upcall_client.cc' |
114 ], | 115 ], |
115 }, | 116 }, |
116 }, | 117 }, |
117 ], | 118 ], |
118 } | 119 } |
OLD | NEW |