OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
(...skipping 27 matching lines...) Expand all Loading... | |
38 '../gpu/gpu_nacl.gyp:gpu_ipc_nacl', | 38 '../gpu/gpu_nacl.gyp:gpu_ipc_nacl', |
39 '../ipc/ipc_nacl.gyp:ipc_nacl', | 39 '../ipc/ipc_nacl.gyp:ipc_nacl', |
40 '../native_client/tools.gyp:prep_toolchain', | 40 '../native_client/tools.gyp:prep_toolchain', |
41 '../ppapi/ppapi_ipc_nacl.gyp:ppapi_ipc_nacl', | 41 '../ppapi/ppapi_ipc_nacl.gyp:ppapi_ipc_nacl', |
42 '../ppapi/ppapi_shared_nacl.gyp:ppapi_shared_nacl', | 42 '../ppapi/ppapi_shared_nacl.gyp:ppapi_shared_nacl', |
43 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', | 43 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', |
44 '../third_party/khronos/khronos.gyp:khronos_headers', | 44 '../third_party/khronos/khronos.gyp:khronos_headers', |
45 '../ui/events/latency_info_nacl.gyp:latency_info_nacl', | 45 '../ui/events/latency_info_nacl.gyp:latency_info_nacl', |
46 ], | 46 ], |
47 }, | 47 }, |
48 { | |
49 'target_name': 'ppapi_proxy_nacl_nonsfi', | |
50 'type': 'none', | |
51 'variables': { | |
52 'ppapi_proxy_target': 1, | |
53 'nacl_untrusted_build': 1, | |
54 'nlib_target': 'libppapi_proxy_nacl_nonsfi.a', | |
55 'build_glibc': 0, | |
56 'build_newlib': 0, | |
57 'build_irt': 0, | |
58 'build_pnacl_newlib': 0, | |
59 'build_nonsfi_helper': 1, | |
60 }, | |
61 'include_dirs': [ | |
62 '..', | |
63 ], | |
64 # For nacl_helper_nonsfi, we do not need start-up procedures for | |
65 # NaCl in SFI mode. | |
66 'sources!': [ | |
67 'nacl_irt/irt_ppapi.cc', | |
Mark Seaborn
2014/10/27 18:59:07
Surely you are going to want some of irt_ppapi.cc
hidehiko
2014/10/28 20:14:00
Ah, I didn't think about sharing the irt_ppapi.cc,
| |
68 'nacl_irt/irt_ppapi.h', | |
69 'nacl_irt/irt_start.cc', | |
Mark Seaborn
2014/10/27 18:59:07
Same applies to irt_start.cc. At the point where
hidehiko
2014/10/28 20:14:00
Unlike irt_ppapi.cc, we won't use this at all. Exc
| |
70 ], | |
71 'dependencies': [ | |
72 '../base/base_nacl.gyp:base_nacl_nonsfi', | |
73 '../components/tracing_nacl.gyp:tracing_nacl', | |
74 '../gpu/command_buffer/command_buffer_nacl.gyp:gles2_utils_nacl', | |
75 '../gpu/gpu_nacl.gyp:command_buffer_client_nacl', | |
76 '../gpu/gpu_nacl.gyp:command_buffer_common_nacl', | |
77 '../gpu/gpu_nacl.gyp:gles2_cmd_helper_nacl', | |
78 '../gpu/gpu_nacl.gyp:gles2_implementation_nacl', | |
79 '../gpu/gpu_nacl.gyp:gpu_ipc_nacl', | |
80 '../ipc/ipc_nacl.gyp:ipc_nacl_nonsfi', | |
81 '../native_client/tools.gyp:prep_toolchain', | |
82 '../ppapi/ppapi_ipc_nacl.gyp:ppapi_ipc_nacl', | |
83 '../ppapi/ppapi_shared_nacl.gyp:ppapi_shared_nacl', | |
84 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', | |
85 '../third_party/khronos/khronos.gyp:khronos_headers', | |
86 '../ui/events/latency_info_nacl.gyp:latency_info_nacl', | |
87 ], | |
88 }, | |
48 ], | 89 ], |
49 }], | 90 }], |
50 ], | 91 ], |
51 } | 92 } |
OLD | NEW |