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 '../../build/common_untrusted.gypi', | 7 '../../build/common_untrusted.gypi', |
8 ], | 8 ], |
9 'conditions': [ | 9 'conditions': [ |
10 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 10 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 }, | 64 }, |
65 { | 65 { |
66 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm', | 66 'destination': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm', |
67 'files': [ | 67 'files': [ |
68 'src/untrusted/irt_stub/libppapi.a', | 68 'src/untrusted/irt_stub/libppapi.a', |
69 ], | 69 ], |
70 }, | 70 }, |
71 ], | 71 ], |
72 }, | 72 }, |
73 { | 73 { |
74 'target_name': 'nacl_irt_srpc', | |
75 'type': 'none', | |
76 'variables': { | |
77 'nexe_target': 'nacl_irt_srpc', | |
78 # These out_* fields override the default filenames, which | |
79 # include a "_newlib" suffix. | |
80 'out_newlib64': '<(PRODUCT_DIR)/nacl_irt_srpc_x86_64.nexe', | |
81 'out_newlib32': '<(PRODUCT_DIR)/nacl_irt_srpc_x86_32.nexe', | |
82 'out_newlib_arm': '<(PRODUCT_DIR)/nacl_irt_srpc_arm.nexe', | |
83 'build_glibc': 0, | |
84 'build_newlib': 1, | |
85 'include_dirs': [ | |
86 'lib/gl/include', | |
87 '..', | |
88 ], | |
89 'link_flags': [ | |
90 '-Wl,--start-group', | |
91 '-lirt_browser', | |
92 '-lppruntime', | |
93 '-lsrpc', | |
94 '-limc_syscalls', | |
95 '-lplatform', | |
96 '-lbase_untrusted', | |
97 '-lshared_memory_support_untrusted', | |
98 '-lgio', | |
99 '-Wl,--end-group', | |
100 '-lm', | |
101 ], | |
102 # See http://code.google.com/p/nativeclient/issues/detail?id=2691. | |
103 # The PNaCl linker (gold) does not implement the "-Ttext-segment" | |
104 # option. However, with the linker for x86, the "-Ttext" option | |
105 # does not affect the executable's base address. | |
106 # TODO(olonho): simplify flags handling and avoid duplication | |
107 # with NaCl logic. | |
108 'conditions': [ | |
109 ['target_arch!="arm"', | |
110 { | |
111 'sources': [ | |
112 ], | |
113 'link_flags': [ | |
114 '-Wl,--section-start,.rodata=<(NACL_IRT_DATA_START)', | |
115 '-Wl,-Ttext-segment=<(NACL_IRT_TEXT_START)', | |
116 ] | |
117 }, { # target_arch == "arm" | |
118 # TODO(mcgrathr): This knowledge really belongs in | |
119 # native_client/src/untrusted/irt/irt.gyp instead of here. | |
120 # But that builds libirt_browser.a as bitcode, so a native | |
121 # object does not fit happily there. | |
122 'sources': [ | |
123 '../../native_client/src/untrusted/irt/aeabi_read_tp.S', | |
124 ], | |
125 'link_flags': [ | |
126 '-Wl,--section-start,.rodata=<(NACL_IRT_DATA_START)', | |
127 '-Wl,-Ttext=<(NACL_IRT_TEXT_START)', | |
128 '--pnacl-allow-native', | |
129 '-arch', 'arm', | |
130 '-Wt,-mtls-use-call', | |
131 '-Wl,--pnacl-irt-link', | |
132 ], | |
133 }, | |
134 ], | |
135 ], | |
136 'extra_args': [ | |
137 '--strip-debug', | |
138 ], | |
139 # TODO(bradchen): get rid of extra_deps64 and extra_deps32 | |
140 # once native_client/build/untrusted.gypi no longer needs them. | |
141 'extra_deps64': [ | |
142 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppruntime.a', | |
143 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libbase_untrusted.a', | |
144 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libirt_browser.a', | |
145 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libshared_memory_suppo rt_untrusted.a', | |
146 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libsrpc.a', | |
147 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libplatform.a', | |
148 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libimc_syscalls.a', | |
149 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgio.a', | |
150 ], | |
151 'extra_deps32': [ | |
152 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppruntime.a', | |
153 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libbase_untrusted.a', | |
154 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libirt_browser.a', | |
155 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libshared_memory_suppo rt_untrusted.a', | |
156 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libsrpc.a', | |
157 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libplatform.a', | |
158 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libimc_syscalls.a', | |
159 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgio.a', | |
160 ], | |
161 'extra_deps_newlib64': [ | |
162 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppruntime.a', | |
163 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libbase_untrusted.a', | |
164 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libirt_browser.a', | |
165 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libshared_memory_suppo rt_untrusted.a', | |
166 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libsrpc.a', | |
167 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libplatform.a', | |
168 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libimc_syscalls.a', | |
169 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgio.a', | |
170 ], | |
171 'extra_deps_newlib32': [ | |
172 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppruntime.a', | |
173 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libbase_untrusted.a', | |
174 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libirt_browser.a', | |
175 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libshared_memory_suppo rt_untrusted.a', | |
176 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libsrpc.a', | |
177 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libplatform.a', | |
178 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libimc_syscalls.a', | |
179 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgio.a', | |
180 ], | |
181 'extra_deps_glibc64': [ | |
182 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppruntime.a', | |
183 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libbase_untrusted.a', | |
184 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libirt_browser.a', | |
185 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libshared_memory_suppor t_untrusted.a', | |
186 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libsrpc.a', | |
187 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libplatform.a', | |
188 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libimc_syscalls.a', | |
189 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgio.a', | |
190 ], | |
191 'extra_deps_glibc32': [ | |
192 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppruntime.a', | |
193 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libbase_untrusted.a', | |
194 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libirt_browser.a', | |
195 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libshared_memory_suppor t_untrusted.a', | |
196 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libsrpc.a', | |
197 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libplatform.a', | |
198 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libimc_syscalls.a', | |
199 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgio.a', | |
200 ], | |
201 'extra_deps_arm': [ | |
202 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppruntime.a', | |
203 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libbase_untrusted.a', | |
204 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libirt_browser.a', | |
205 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libshared_memory_supp ort_untrusted.a', | |
206 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libsrpc.a', | |
207 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libplatform.a', | |
208 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libimc_syscalls.a', | |
209 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgio.a', | |
210 ], | |
211 }, | |
212 'dependencies': [ | |
213 'src/shared/ppapi_proxy/ppapi_proxy_untrusted.gyp:ppruntime_lib', | |
214 '../../base/base_untrusted.gyp:base_untrusted', | |
215 '../../media/media_untrusted.gyp:shared_memory_support_untrusted', | |
216 '../../native_client/src/untrusted/irt/irt.gyp:irt_browser_lib', | |
217 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', | |
218 '../../native_client/src/shared/platform/platform.gyp:platform_lib', | |
219 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | |
220 '../../native_client/src/shared/gio/gio.gyp:gio_lib', | |
221 ], | |
222 }, | |
223 { | |
224 'target_name': 'nacl_irt', | 74 'target_name': 'nacl_irt', |
225 'type': 'none', | 75 'type': 'none', |
226 'variables': { | 76 'variables': { |
227 'nexe_target': 'nacl_irt', | 77 'nexe_target': 'nacl_irt', |
228 # These out_* fields override the default filenames, which | 78 # These out_* fields override the default filenames, which |
229 # include a "_newlib" suffix. | 79 # include a "_newlib" suffix. |
230 'out_newlib64': '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 80 'out_newlib64': '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
231 'out_newlib32': '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', | 81 'out_newlib32': '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', |
232 'out_newlib_arm': '<(PRODUCT_DIR)/nacl_irt_arm.nexe', | 82 'out_newlib_arm': '<(PRODUCT_DIR)/nacl_irt_arm.nexe', |
233 'build_glibc': 0, | 83 'build_glibc': 0, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
289 '-Wl,--pnacl-irt-link', | 139 '-Wl,--pnacl-irt-link', |
290 ], | 140 ], |
291 }, | 141 }, |
292 ], | 142 ], |
293 ], | 143 ], |
294 'sources': [ | 144 'sources': [ |
295 ], | 145 ], |
296 'extra_args': [ | 146 'extra_args': [ |
297 '--strip-debug', | 147 '--strip-debug', |
298 ], | 148 ], |
299 # TODO(bradchen): get rid of extra_deps64 and extra_deps32 | |
300 # once native_client/build/untrusted.gypi no longer needs them. | |
301 'extra_deps64': [ | |
302 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_proxy_untrust ed.a', | |
303 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_ipc_untrusted .a', | |
304 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_shared_untrus ted.a', | |
305 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_implementatio n_untrusted.a', | |
306 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libcommand_buffer_clie nt_untrusted.a', | |
307 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libcommand_buffer_comm on_untrusted.a', | |
308 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgpu_ipc_untrusted.a ', | |
309 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libtracing_untrusted.a ', | |
310 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_cmd_helper_un trusted.a', | |
311 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_utils_untrust ed.a', | |
312 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libipc_untrusted.a', | |
313 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libbase_untrusted.a', | |
Mark Seaborn
2013/01/17 00:25:58
Why are you removing all deps for the IPC proxy?
dmichael (off chromium)
2013/01/17 17:43:15
+1
I'd support trying to get rid of them, but it s
bbudge
2013/01/17 19:07:09
It builds without them. Brad Nelson doesn't think
bbudge
2013/01/17 19:07:09
OK, this is complicated enough without them. I'll
| |
314 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libirt_browser.a', | |
315 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libshared_memory_suppo rt_untrusted.a', | |
316 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libsrpc.a', | |
317 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libplatform.a', | |
318 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libimc_syscalls.a', | |
319 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgio.a', | |
320 ], | |
321 'extra_deps32': [ | |
322 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_proxy_untrust ed.a', | |
323 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_ipc_untrusted .a', | |
324 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_shared_untrus ted.a', | |
325 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_implementatio n_untrusted.a', | |
326 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libcommand_buffer_clie nt_untrusted.a', | |
327 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libcommand_buffer_comm on_untrusted.a', | |
328 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgpu_ipc_untrusted.a ', | |
329 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libtracing_untrusted.a ', | |
330 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_cmd_helper_un trusted.a', | |
331 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_utils_untrust ed.a', | |
332 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libipc_untrusted.a', | |
333 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libbase_untrusted.a', | |
334 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libirt_browser.a', | |
335 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libshared_memory_suppo rt_untrusted.a', | |
336 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libsrpc.a', | |
337 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libplatform.a', | |
338 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libimc_syscalls.a', | |
339 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgio.a', | |
340 ], | |
341 'extra_deps_newlib64': [ | |
342 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_proxy_untrust ed.a', | |
343 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_ipc_untrusted .a', | |
344 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_shared_untrus ted.a', | |
345 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_implementatio n_untrusted.a', | |
346 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libcommand_buffer_clie nt_untrusted.a', | |
347 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libcommand_buffer_comm on_untrusted.a', | |
348 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgpu_ipc_untrusted.a ', | |
349 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libtracing_untrusted.a ', | |
350 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_cmd_helper_un trusted.a', | |
351 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgles2_utils_untrust ed.a', | |
352 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libipc_untrusted.a', | |
353 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libbase_untrusted.a', | |
354 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libirt_browser.a', | |
355 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libshared_memory_suppo rt_untrusted.a', | |
356 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libsrpc.a', | |
357 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libplatform.a', | |
358 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libimc_syscalls.a', | |
359 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libgio.a', | |
360 ], | |
361 'extra_deps_newlib32': [ | |
362 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_proxy_untrust ed.a', | |
363 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_ipc_untrusted .a', | |
364 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_shared_untrus ted.a', | |
365 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_implementatio n_untrusted.a', | |
366 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libcommand_buffer_clie nt_untrusted.a', | |
367 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libcommand_buffer_comm on_untrusted.a', | |
368 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgpu_ipc_untrusted.a ', | |
369 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libtracing_untrusted.a ', | |
370 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_cmd_helper_un trusted.a', | |
371 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgles2_utils_untrust ed.a', | |
372 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libipc_untrusted.a', | |
373 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libbase_untrusted.a', | |
374 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libirt_browser.a', | |
375 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libshared_memory_suppo rt_untrusted.a', | |
376 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libsrpc.a', | |
377 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libplatform.a', | |
378 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libimc_syscalls.a', | |
379 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libgio.a', | |
380 ], | |
381 'extra_deps_glibc64': [ | |
382 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppapi_proxy_untruste d.a', | |
383 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppapi_ipc_untrusted. a', | |
384 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppapi_shared_untrust ed.a', | |
385 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgles2_implementation _untrusted.a', | |
386 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libcommand_buffer_clien t_untrusted.a', | |
387 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libcommand_buffer_commo n_untrusted.a', | |
388 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgpu_ipc_untrusted.a' , | |
389 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libtracing_untrusted.a' , | |
390 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgles2_cmd_helper_unt rusted.a', | |
391 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgles2_utils_untruste d.a', | |
392 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libipc_untrusted.a', | |
393 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libbase_untrusted.a', | |
394 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libirt_browser.a', | |
395 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libshared_memory_suppor t_untrusted.a', | |
396 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libsrpc.a', | |
397 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libplatform.a', | |
398 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libimc_syscalls.a', | |
399 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libgio.a', | |
400 ], | |
401 'extra_deps_glibc32': [ | |
402 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppapi_proxy_untruste d.a', | |
403 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppapi_ipc_untrusted. a', | |
404 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppapi_shared_untrust ed.a', | |
405 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgles2_implementation _untrusted.a', | |
406 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libcommand_buffer_clien t_untrusted.a', | |
407 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libcommand_buffer_commo n_untrusted.a', | |
408 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgpu_ipc_untrusted.a' , | |
409 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libtracing_untrusted.a' , | |
410 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgles2_cmd_helper_unt rusted.a', | |
411 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgles2_utils_untruste d.a', | |
412 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libipc_untrusted.a', | |
413 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libbase_untrusted.a', | |
414 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libirt_browser.a', | |
415 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libshared_memory_suppor t_untrusted.a', | |
416 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libsrpc.a', | |
417 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libplatform.a', | |
418 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libimc_syscalls.a', | |
419 '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libgio.a', | |
420 ], | |
421 'extra_deps_arm': [ | |
422 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi_proxy_untrus ted.a', | |
423 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi_ipc_untruste d.a', | |
424 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi_shared_untru sted.a', | |
425 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgles2_implementati on_untrusted.a', | |
426 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libcommand_buffer_cli ent_untrusted.a', | |
427 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libcommand_buffer_com mon_untrusted.a', | |
428 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgpu_ipc_untrusted. a', | |
429 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libtracing_untrusted. a', | |
430 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgles2_cmd_helper_u ntrusted.a', | |
431 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgles2_utils_untrus ted.a', | |
432 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libipc_untrusted.a', | |
433 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libbase_untrusted.a', | |
434 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libirt_browser.a', | |
435 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libshared_memory_supp ort_untrusted.a', | |
436 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libsrpc.a', | |
437 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libplatform.a', | |
438 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libimc_syscalls.a', | |
439 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libgio.a', | |
440 ], | |
441 }, | 149 }, |
442 'dependencies': [ | 150 'dependencies': [ |
443 '../ppapi_ipc_proxy_untrusted.gyp:ppapi_proxy_untrusted', | 151 '../ppapi_ipc_proxy_untrusted.gyp:ppapi_proxy_untrusted', |
444 '../ppapi_ipc_untrusted.gyp:ppapi_ipc_untrusted', | 152 '../ppapi_ipc_untrusted.gyp:ppapi_ipc_untrusted', |
445 '../ppapi_shared_untrusted.gyp:ppapi_shared_untrusted', | 153 '../ppapi_shared_untrusted.gyp:ppapi_shared_untrusted', |
446 '../../gpu/command_buffer/command_buffer_untrusted.gyp:gles2_utils_u ntrusted', | 154 '../../gpu/command_buffer/command_buffer_untrusted.gyp:gles2_utils_u ntrusted', |
447 '../../gpu/gpu_untrusted.gyp:command_buffer_client_untrusted', | 155 '../../gpu/gpu_untrusted.gyp:command_buffer_client_untrusted', |
448 '../../gpu/gpu_untrusted.gyp:command_buffer_common_untrusted', | 156 '../../gpu/gpu_untrusted.gyp:command_buffer_common_untrusted', |
449 '../../gpu/gpu_untrusted.gyp:gles2_implementation_untrusted', | 157 '../../gpu/gpu_untrusted.gyp:gles2_implementation_untrusted', |
450 '../../gpu/gpu_untrusted.gyp:gles2_cmd_helper_untrusted', | 158 '../../gpu/gpu_untrusted.gyp:gles2_cmd_helper_untrusted', |
451 '../../gpu/gpu_untrusted.gyp:gpu_ipc_untrusted', | 159 '../../gpu/gpu_untrusted.gyp:gpu_ipc_untrusted', |
452 '../../components/components_tracing_untrusted.gyp:tracing_untrusted ', | 160 '../../components/components_tracing_untrusted.gyp:tracing_untrusted ', |
453 '../../ipc/ipc_untrusted.gyp:ipc_untrusted', | 161 '../../ipc/ipc_untrusted.gyp:ipc_untrusted', |
454 '../../base/base_untrusted.gyp:base_untrusted', | 162 '../../base/base_untrusted.gyp:base_untrusted', |
455 '../../media/media_untrusted.gyp:shared_memory_support_untrusted', | 163 '../../media/media_untrusted.gyp:shared_memory_support_untrusted', |
456 '../../native_client/src/untrusted/irt/irt.gyp:irt_browser_lib', | 164 '../../native_client/src/untrusted/irt/irt.gyp:irt_browser_lib', |
457 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', | 165 '../../native_client/src/shared/srpc/srpc.gyp:srpc_lib', |
458 '../../native_client/src/shared/platform/platform.gyp:platform_lib', | 166 '../../native_client/src/shared/platform/platform.gyp:platform_lib', |
459 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', | 167 '../../native_client/src/untrusted/nacl/nacl.gyp:imc_syscalls_lib', |
460 '../../native_client/src/shared/gio/gio.gyp:gio_lib', | 168 '../../native_client/src/shared/gio/gio.gyp:gio_lib', |
461 ], | 169 ], |
462 }, | 170 }, |
463 ], | 171 ], |
464 }], | 172 }], |
465 ], | 173 ], |
466 } | 174 } |
OLD | NEW |