Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: build/untrusted.gypi

Issue 336993003: Fix untrusted.gypi to generate correct list of dependecies (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/scan_sources.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 6 'variables': {
7 'variables': { 7 'variables': {
8 # Enable -Werror by default, but put it in a variable so it can 8 # Enable -Werror by default, but put it in a variable so it can
9 # be optionally disabled. 9 # be optionally disabled.
10 'werror%': '-Werror', 10 'werror%': '-Werror',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'extra_deps_newlib32': [], 83 'extra_deps_newlib32': [],
84 'extra_deps_glibc64': [], 84 'extra_deps_glibc64': [],
85 'extra_deps_glibc32': [], 85 'extra_deps_glibc32': [],
86 'include_dirs': ['<(DEPTH)'], 86 'include_dirs': ['<(DEPTH)'],
87 'defines': [ 87 'defines': [
88 '<@(nacl_default_defines)', 88 '<@(nacl_default_defines)',
89 'NACL_BUILD_ARCH=x86', 89 'NACL_BUILD_ARCH=x86',
90 ], 90 ],
91 'sources': [], 91 'sources': [],
92 'link_flags': [], 92 'link_flags': [],
93 'get_sources': [
94 'scan_sources',
95 # This is needed to open the .c filenames, which are given
96 # relative to the .gyp file.
97 '-I.',
98 # This is needed to open the .h filenames, which are given
99 # relative to the native_client directory's parent.
100 '-I<(DEPTH)',
101 ],
102 }, 93 },
103 }, 94 },
104 }], 95 }],
105 ['target_arch=="arm"', { 96 ['target_arch=="arm"', {
106 # Common defaults for all ARM nacl-gcc targets 97 # Common defaults for all ARM nacl-gcc targets
107 'target_defaults': { 98 'target_defaults': {
108 'defines': [], 99 'defines': [],
109 'sources': [], 100 'sources': [],
110 'compile_flags': [], 101 'compile_flags': [],
111 'link_flags': [], 102 'link_flags': [],
(...skipping 25 matching lines...) Expand all
137 'tc_lib_dir_irt_arm': '<(SHARED_INTERMEDIATE_DIR)/tc_irt/libarm', 128 'tc_lib_dir_irt_arm': '<(SHARED_INTERMEDIATE_DIR)/tc_irt/libarm',
138 'tc_include_dir_newlib': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/include ', 129 'tc_include_dir_newlib': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/include ',
139 'tc_include_dir_bionic': '<(SHARED_INTERMEDIATE_DIR)/tc_bionic/include ', 130 'tc_include_dir_bionic': '<(SHARED_INTERMEDIATE_DIR)/tc_bionic/include ',
140 'include_dirs': ['<(DEPTH)'], 131 'include_dirs': ['<(DEPTH)'],
141 'defines': [ 132 'defines': [
142 '<@(nacl_default_defines)', 133 '<@(nacl_default_defines)',
143 'NACL_BUILD_ARCH=arm', 134 'NACL_BUILD_ARCH=arm',
144 ], 135 ],
145 'sources': [], 136 'sources': [],
146 'link_flags': [], 137 'link_flags': [],
147 'get_sources': [
148 'scan_sources',
149 # This is needed to open the .c filenames, which are given
150 # relative to the .gyp file.
151 '-I.',
152 # This is needed to open the .h filenames, which are given
153 # relative to the native_client directory's parent.
154 '-I<(DEPTH)',
155 ],
156 }, 138 },
157 }, 139 },
158 }], 140 }],
159 ['target_arch=="mipsel"', { 141 ['target_arch=="mipsel"', {
160 # Common defaults for all mips pnacl-clang targets 142 # Common defaults for all mips pnacl-clang targets
161 'target_defaults': { 143 'target_defaults': {
162 'defines': [], 144 'defines': [],
163 'sources': [], 145 'sources': [],
164 'compile_flags': [], 146 'compile_flags': [],
165 'link_flags': [], 147 'link_flags': [],
(...skipping 21 matching lines...) Expand all
187 'tc_lib_dir_newlib_mips': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libmip s', 169 'tc_lib_dir_newlib_mips': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libmip s',
188 'tc_lib_dir_irt_mips': '<(SHARED_INTERMEDIATE_DIR)/tc_irt/libmips', 170 'tc_lib_dir_irt_mips': '<(SHARED_INTERMEDIATE_DIR)/tc_irt/libmips',
189 'tc_include_dir_newlib': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/include ', 171 'tc_include_dir_newlib': '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/include ',
190 'include_dirs': ['<(DEPTH)'], 172 'include_dirs': ['<(DEPTH)'],
191 'defines': [ 173 'defines': [
192 '<@(nacl_default_defines)', 174 '<@(nacl_default_defines)',
193 'NACL_BUILD_ARCH=mips', 175 'NACL_BUILD_ARCH=mips',
194 ], 176 ],
195 'sources': [], 177 'sources': [],
196 'link_flags': [], 178 'link_flags': [],
197 'get_sources': [
198 'scan_sources',
199 # This is needed to open the .c filenames, which are given
200 # relative to the .gyp file.
201 '-I.',
202 # This is needed to open the .h filenames, which are given
203 # relative to the native_client directory's parent.
204 '-I<(DEPTH)',
205 ],
206 }, 179 },
207 }, 180 },
208 }], 181 }],
209 ['target_arch=="ia32" or target_arch=="x64"', { 182 ['target_arch=="ia32" or target_arch=="x64"', {
210 'target_defaults': { 183 'target_defaults': {
211 # x86-64 newlib nexe action 184 # x86-64 newlib nexe action
212 'target_conditions': [ 185 'target_conditions': [
213 ['nexe_target!="" and build_newlib!=0 and enable_x86_64!=0', { 186 ['nexe_target!="" and build_newlib!=0 and enable_x86_64!=0', {
214 'variables': { 187 'variables': {
215 'tool_name': 'newlib', 188 'tool_name': 'newlib',
216 'out_newlib64%': '<(PRODUCT_DIR)/>(nexe_target)_newlib_x64.nexe' , 189 'out_newlib64%': '<(PRODUCT_DIR)/>(nexe_target)_newlib_x64.nexe' ,
217 'objdir_newlib64%': '>(INTERMEDIATE_DIR)/<(tool_name)-x86-64/>(_ target_name)', 190 'objdir_newlib64%': '>(INTERMEDIATE_DIR)/<(tool_name)-x86-64/>(_ target_name)',
218 }, 191 },
219 'actions': [ 192 'actions': [
220 { 193 {
221 'action_name': 'build newlib x86-64 nexe', 194 'action_name': 'build newlib x86-64 nexe',
222 'variables': { 195 'variables': {
223 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 196 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
224 }, 197 },
225 'msvs_cygwin_shell': 0, 198 'msvs_cygwin_shell': 0,
226 'description': 'building >(out_newlib64)', 199 'description': 'building >(out_newlib64)',
227 'inputs': [ 200 'inputs': [
228 '<(DEPTH)/native_client/build/build_nexe.py', 201 '<(DEPTH)/native_client/build/build_nexe.py',
229 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 202 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
230 '>@(extra_deps)', 203 '>@(extra_deps)',
231 '>@(extra_deps_newlib64)', 204 '>@(extra_deps_newlib64)',
232 '^(source_list_newlib64)', 205 '^(source_list_newlib64)',
233 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 206 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
234 ], 207 ],
235 'outputs': ['>(out_newlib64)'], 208 'outputs': ['>(out_newlib64)'],
236 'action': [ 209 'action': [
237 'python', 210 'python',
238 '<(DEPTH)/native_client/build/build_nexe.py', 211 '<(DEPTH)/native_client/build/build_nexe.py',
239 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 212 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
263 'actions': [ 236 'actions': [
264 { 237 {
265 'action_name': 'build newlib x86-64 nlib', 238 'action_name': 'build newlib x86-64 nlib',
266 'variables': { 239 'variables': {
267 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 240 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
268 }, 241 },
269 'msvs_cygwin_shell': 0, 242 'msvs_cygwin_shell': 0,
270 'description': 'building >(out_newlib64)', 243 'description': 'building >(out_newlib64)',
271 'inputs': [ 244 'inputs': [
272 '<(DEPTH)/native_client/build/build_nexe.py', 245 '<(DEPTH)/native_client/build/build_nexe.py',
273 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 246 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
274 '>@(extra_deps)', 247 '>@(extra_deps)',
275 '>@(extra_deps_newlib64)', 248 '>@(extra_deps_newlib64)',
276 '^(source_list_newlib64)', 249 '^(source_list_newlib64)',
277 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 250 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
278 ], 251 ],
279 'outputs': ['>(out_newlib64)'], 252 'outputs': ['>(out_newlib64)'],
280 'action': [ 253 'action': [
281 'python', 254 'python',
282 '<(DEPTH)/native_client/build/build_nexe.py', 255 '<(DEPTH)/native_client/build/build_nexe.py',
283 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 256 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
307 'actions': [ 280 'actions': [
308 { 281 {
309 'action_name': 'build IRT x86-64 nexe', 282 'action_name': 'build IRT x86-64 nexe',
310 'variables': { 283 'variables': {
311 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 284 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
312 }, 285 },
313 'msvs_cygwin_shell': 0, 286 'msvs_cygwin_shell': 0,
314 'description': 'building >(out_newlib64)', 287 'description': 'building >(out_newlib64)',
315 'inputs': [ 288 'inputs': [
316 '<(DEPTH)/native_client/build/build_nexe.py', 289 '<(DEPTH)/native_client/build/build_nexe.py',
317 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 290 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
318 '>@(extra_deps)', 291 '>@(extra_deps)',
319 '>@(extra_deps_newlib64)', 292 '>@(extra_deps_newlib64)',
320 '^(source_list_newlib64)', 293 '^(source_list_newlib64)',
321 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 294 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
322 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)', 295 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)',
323 ], 296 ],
324 'outputs': ['>(out_newlib64)'], 297 'outputs': ['>(out_newlib64)'],
325 'action': [ 298 'action': [
326 'python', 299 'python',
327 '<(DEPTH)/native_client/build/build_nexe.py', 300 '<(DEPTH)/native_client/build/build_nexe.py',
(...skipping 27 matching lines...) Expand all
355 'actions': [ 328 'actions': [
356 { 329 {
357 'action_name': 'build irt x86-64 nlib', 330 'action_name': 'build irt x86-64 nlib',
358 'variables': { 331 'variables': {
359 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 332 'source_list_newlib64%': '^|(<(tool_name)-x86-64.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
360 }, 333 },
361 'msvs_cygwin_shell': 0, 334 'msvs_cygwin_shell': 0,
362 'description': 'building >(out_newlib64)', 335 'description': 'building >(out_newlib64)',
363 'inputs': [ 336 'inputs': [
364 '<(DEPTH)/native_client/build/build_nexe.py', 337 '<(DEPTH)/native_client/build/build_nexe.py',
365 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 338 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
366 '>@(extra_deps)', 339 '>@(extra_deps)',
367 '>@(extra_deps_newlib64)', 340 '>@(extra_deps_newlib64)',
368 '^(source_list_newlib64)', 341 '^(source_list_newlib64)',
369 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 342 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
370 ], 343 ],
371 'outputs': ['>(out_newlib64)'], 344 'outputs': ['>(out_newlib64)'],
372 'action': [ 345 'action': [
373 'python', 346 'python',
374 '<(DEPTH)/native_client/build/build_nexe.py', 347 '<(DEPTH)/native_client/build/build_nexe.py',
375 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 348 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 24 matching lines...) Expand all
400 'actions': [ 373 'actions': [
401 { 374 {
402 'action_name': 'build newlib x86-32 nexe', 375 'action_name': 'build newlib x86-32 nexe',
403 'variables': { 376 'variables': {
404 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 377 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
405 }, 378 },
406 'msvs_cygwin_shell': 0, 379 'msvs_cygwin_shell': 0,
407 'description': 'building >(out_newlib32)', 380 'description': 'building >(out_newlib32)',
408 'inputs': [ 381 'inputs': [
409 '<(DEPTH)/native_client/build/build_nexe.py', 382 '<(DEPTH)/native_client/build/build_nexe.py',
410 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 383 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
411 '>@(extra_deps)', 384 '>@(extra_deps)',
412 '>@(extra_deps_newlib32)', 385 '>@(extra_deps_newlib32)',
413 '^(source_list_newlib32)', 386 '^(source_list_newlib32)',
414 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 387 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
415 ], 388 ],
416 'outputs': ['>(out_newlib32)'], 389 'outputs': ['>(out_newlib32)'],
417 'action': [ 390 'action': [
418 'python', 391 'python',
419 '<(DEPTH)/native_client/build/build_nexe.py', 392 '<(DEPTH)/native_client/build/build_nexe.py',
420 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 393 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
444 'actions': [ 417 'actions': [
445 { 418 {
446 'action_name': 'build newlib x86-32 nlib', 419 'action_name': 'build newlib x86-32 nlib',
447 'variables': { 420 'variables': {
448 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 421 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
449 }, 422 },
450 'msvs_cygwin_shell': 0, 423 'msvs_cygwin_shell': 0,
451 'description': 'building >(out_newlib32)', 424 'description': 'building >(out_newlib32)',
452 'inputs': [ 425 'inputs': [
453 '<(DEPTH)/native_client/build/build_nexe.py', 426 '<(DEPTH)/native_client/build/build_nexe.py',
454 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 427 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
455 '>@(extra_deps)', 428 '>@(extra_deps)',
456 '>@(extra_deps_newlib32)', 429 '>@(extra_deps_newlib32)',
457 '^(source_list_newlib32)', 430 '^(source_list_newlib32)',
458 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 431 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
459 ], 432 ],
460 'outputs': ['>(out_newlib32)'], 433 'outputs': ['>(out_newlib32)'],
461 'action': [ 434 'action': [
462 'python', 435 'python',
463 '<(DEPTH)/native_client/build/build_nexe.py', 436 '<(DEPTH)/native_client/build/build_nexe.py',
464 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 437 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
488 'actions': [ 461 'actions': [
489 { 462 {
490 'action_name': 'build IRT x86-32 nexe', 463 'action_name': 'build IRT x86-32 nexe',
491 'variables': { 464 'variables': {
492 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 465 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
493 }, 466 },
494 'msvs_cygwin_shell': 0, 467 'msvs_cygwin_shell': 0,
495 'description': 'building >(out_newlib32)', 468 'description': 'building >(out_newlib32)',
496 'inputs': [ 469 'inputs': [
497 '<(DEPTH)/native_client/build/build_nexe.py', 470 '<(DEPTH)/native_client/build/build_nexe.py',
498 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 471 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
499 '>@(extra_deps)', 472 '>@(extra_deps)',
500 '>@(extra_deps_newlib32)', 473 '>@(extra_deps_newlib32)',
501 '^(source_list_newlib32)', 474 '^(source_list_newlib32)',
502 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 475 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
503 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)', 476 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)',
504 ], 477 ],
505 'outputs': ['>(out_newlib32)'], 478 'outputs': ['>(out_newlib32)'],
506 'action': [ 479 'action': [
507 'python', 480 'python',
508 '<(DEPTH)/native_client/build/build_nexe.py', 481 '<(DEPTH)/native_client/build/build_nexe.py',
(...skipping 26 matching lines...) Expand all
535 'actions': [ 508 'actions': [
536 { 509 {
537 'action_name': 'build IRT x86-32 nlib', 510 'action_name': 'build IRT x86-32 nlib',
538 'variables': { 511 'variables': {
539 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 512 'source_list_newlib32%': '^|(<(tool_name)-x86-32.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
540 }, 513 },
541 'msvs_cygwin_shell': 0, 514 'msvs_cygwin_shell': 0,
542 'description': 'building >(out_newlib32)', 515 'description': 'building >(out_newlib32)',
543 'inputs': [ 516 'inputs': [
544 '<(DEPTH)/native_client/build/build_nexe.py', 517 '<(DEPTH)/native_client/build/build_nexe.py',
545 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 518 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
546 '>@(extra_deps)', 519 '>@(extra_deps)',
547 '>@(extra_deps_newlib32)', 520 '>@(extra_deps_newlib32)',
548 '^(source_list_newlib32)', 521 '^(source_list_newlib32)',
549 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep', 522 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _newlib/stamp.prep',
550 ], 523 ],
551 'outputs': ['>(out_newlib32)'], 524 'outputs': ['>(out_newlib32)'],
552 'action': [ 525 'action': [
553 'python', 526 'python',
554 '<(DEPTH)/native_client/build/build_nexe.py', 527 '<(DEPTH)/native_client/build/build_nexe.py',
555 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 528 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 29 matching lines...) Expand all
585 'actions': [ 558 'actions': [
586 { 559 {
587 'action_name': 'build newlib arm nexe', 560 'action_name': 'build newlib arm nexe',
588 'variables': { 561 'variables': {
589 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 562 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
590 }, 563 },
591 'msvs_cygwin_shell': 0, 564 'msvs_cygwin_shell': 0,
592 'description': 'building >(out_newlib_arm)', 565 'description': 'building >(out_newlib_arm)',
593 'inputs': [ 566 'inputs': [
594 '<(DEPTH)/native_client/build/build_nexe.py', 567 '<(DEPTH)/native_client/build/build_nexe.py',
595 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 568 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
596 '>@(extra_deps)', 569 '>@(extra_deps)',
597 '>@(extra_deps_newlib_arm)', 570 '>@(extra_deps_newlib_arm)',
598 '^(source_list_newlib_arm)', 571 '^(source_list_newlib_arm)',
599 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep', 572 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep',
600 ], 573 ],
601 'outputs': ['>(out_newlib_arm)'], 574 'outputs': ['>(out_newlib_arm)'],
602 'action': [ 575 'action': [
603 'python', 576 'python',
604 '<(DEPTH)/native_client/build/build_nexe.py', 577 '<(DEPTH)/native_client/build/build_nexe.py',
605 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 578 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
629 'actions': [ 602 'actions': [
630 { 603 {
631 'action_name': 'build newlib arm nlib', 604 'action_name': 'build newlib arm nlib',
632 'variables': { 605 'variables': {
633 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 606 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
634 }, 607 },
635 'msvs_cygwin_shell': 0, 608 'msvs_cygwin_shell': 0,
636 'description': 'building >(out_newlib_arm)', 609 'description': 'building >(out_newlib_arm)',
637 'inputs': [ 610 'inputs': [
638 '<(DEPTH)/native_client/build/build_nexe.py', 611 '<(DEPTH)/native_client/build/build_nexe.py',
639 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 612 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
640 '>@(extra_deps)', 613 '>@(extra_deps)',
641 '>@(extra_deps_newlib_arm)', 614 '>@(extra_deps_newlib_arm)',
642 '^(source_list_newlib_arm)', 615 '^(source_list_newlib_arm)',
643 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep', 616 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep',
644 ], 617 ],
645 'outputs': ['>(out_newlib_arm)'], 618 'outputs': ['>(out_newlib_arm)'],
646 'action': [ 619 'action': [
647 'python', 620 'python',
648 '<(DEPTH)/native_client/build/build_nexe.py', 621 '<(DEPTH)/native_client/build/build_nexe.py',
649 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 622 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 22 matching lines...) Expand all
672 'actions': [ 645 'actions': [
673 { 646 {
674 'action_name': 'build bionic arm nlib', 647 'action_name': 'build bionic arm nlib',
675 'variables': { 648 'variables': {
676 'source_list_bionic_arm%': '^|(<(tool_name)-arm.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 649 'source_list_bionic_arm%': '^|(<(tool_name)-arm.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
677 }, 650 },
678 'msvs_cygwin_shell': 0, 651 'msvs_cygwin_shell': 0,
679 'description': 'building >(out_bionic_arm)', 652 'description': 'building >(out_bionic_arm)',
680 'inputs': [ 653 'inputs': [
681 '<(DEPTH)/native_client/build/build_nexe.py', 654 '<(DEPTH)/native_client/build/build_nexe.py',
682 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 655 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
683 '>@(extra_deps)', 656 '>@(extra_deps)',
684 '>@(extra_deps_bionic_arm)', 657 '>@(extra_deps_bionic_arm)',
685 '^(source_list_bionic_arm)', 658 '^(source_list_bionic_arm)',
686 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86_nacl_arm/ nacl_arm_bionic', 659 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86_nacl_arm/ nacl_arm_bionic',
687 ], 660 ],
688 'outputs': ['>(out_bionic_arm)'], 661 'outputs': ['>(out_bionic_arm)'],
689 'action': [ 662 'action': [
690 'python', 663 'python',
691 '<(DEPTH)/native_client/build/build_nexe.py', 664 '<(DEPTH)/native_client/build/build_nexe.py',
692 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 665 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
716 'actions': [ 689 'actions': [
717 { 690 {
718 'action_name': 'build IRT arm nexe', 691 'action_name': 'build IRT arm nexe',
719 'variables': { 692 'variables': {
720 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 693 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
721 }, 694 },
722 'msvs_cygwin_shell': 0, 695 'msvs_cygwin_shell': 0,
723 'description': 'building >(out_newlib_arm)', 696 'description': 'building >(out_newlib_arm)',
724 'inputs': [ 697 'inputs': [
725 '<(DEPTH)/native_client/build/build_nexe.py', 698 '<(DEPTH)/native_client/build/build_nexe.py',
726 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 699 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
727 '>@(extra_deps)', 700 '>@(extra_deps)',
728 '>@(extra_deps_newlib_arm)', 701 '>@(extra_deps_newlib_arm)',
729 '^(source_list_newlib_arm)', 702 '^(source_list_newlib_arm)',
730 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep', 703 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep',
731 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)', 704 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)',
732 ], 705 ],
733 'outputs': ['>(out_newlib_arm)'], 706 'outputs': ['>(out_newlib_arm)'],
734 'action': [ 707 'action': [
735 'python', 708 'python',
736 '<(DEPTH)/native_client/build/build_nexe.py', 709 '<(DEPTH)/native_client/build/build_nexe.py',
(...skipping 26 matching lines...) Expand all
763 'actions': [ 736 'actions': [
764 { 737 {
765 'action_name': 'build IRT arm nlib', 738 'action_name': 'build IRT arm nlib',
766 'variables': { 739 'variables': {
767 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 740 'source_list_newlib_arm%': '^|(<(tool_name)-arm.>(_target_name ).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
768 }, 741 },
769 'msvs_cygwin_shell': 0, 742 'msvs_cygwin_shell': 0,
770 'description': 'building >(out_newlib_arm)', 743 'description': 'building >(out_newlib_arm)',
771 'inputs': [ 744 'inputs': [
772 '<(DEPTH)/native_client/build/build_nexe.py', 745 '<(DEPTH)/native_client/build/build_nexe.py',
773 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 746 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
774 '>@(extra_deps)', 747 '>@(extra_deps)',
775 '>@(extra_deps_newlib_arm)', 748 '>@(extra_deps_newlib_arm)',
776 '^(source_list_newlib_arm)', 749 '^(source_list_newlib_arm)',
777 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep', 750 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_arm_ newlib/stamp.prep',
778 ], 751 ],
779 'outputs': ['>(out_newlib_arm)'], 752 'outputs': ['>(out_newlib_arm)'],
780 'action': [ 753 'action': [
781 'python', 754 'python',
782 '<(DEPTH)/native_client/build/build_nexe.py', 755 '<(DEPTH)/native_client/build/build_nexe.py',
783 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 756 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 29 matching lines...) Expand all
813 'actions': [ 786 'actions': [
814 { 787 {
815 'action_name': 'build newlib mips nexe', 788 'action_name': 'build newlib mips nexe',
816 'variables': { 789 'variables': {
817 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))', 790 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources) ^(native_sources))',
818 }, 791 },
819 'msvs_cygwin_shell': 0, 792 'msvs_cygwin_shell': 0,
820 'description': 'building >(out_newlib_mips)', 793 'description': 'building >(out_newlib_mips)',
821 'inputs': [ 794 'inputs': [
822 '<(DEPTH)/native_client/build/build_nexe.py', 795 '<(DEPTH)/native_client/build/build_nexe.py',
823 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources) >(nat ive_sources))', 796 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources) >(native_sources))',
824 '>@(extra_deps)', 797 '>@(extra_deps)',
825 '>@(extra_deps_newlib_mips)', 798 '>@(extra_deps_newlib_mips)',
826 '^(source_list_newlib_mips)', 799 '^(source_list_newlib_mips)',
827 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep', 800 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep',
828 ], 801 ],
829 'outputs': ['>(out_newlib_mips)'], 802 'outputs': ['>(out_newlib_mips)'],
830 'action': [ 803 'action': [
831 'python', 804 'python',
832 '<(DEPTH)/native_client/build/build_nexe.py', 805 '<(DEPTH)/native_client/build/build_nexe.py',
833 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 806 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
857 'actions': [ 830 'actions': [
858 { 831 {
859 'action_name': 'build newlib mips nlib', 832 'action_name': 'build newlib mips nlib',
860 'variables': { 833 'variables': {
861 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 834 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
862 }, 835 },
863 'msvs_cygwin_shell': 0, 836 'msvs_cygwin_shell': 0,
864 'description': 'building >(out_newlib_mips)', 837 'description': 'building >(out_newlib_mips)',
865 'inputs': [ 838 'inputs': [
866 '<(DEPTH)/native_client/build/build_nexe.py', 839 '<(DEPTH)/native_client/build/build_nexe.py',
867 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 840 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
868 '>@(extra_deps)', 841 '>@(extra_deps)',
869 '>@(extra_deps_newlib_mips)', 842 '>@(extra_deps_newlib_mips)',
870 '^(source_list_newlib_mips)', 843 '^(source_list_newlib_mips)',
871 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep', 844 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep',
872 ], 845 ],
873 'outputs': ['>(out_newlib_mips)'], 846 'outputs': ['>(out_newlib_mips)'],
874 'action': [ 847 'action': [
875 'python', 848 'python',
876 '<(DEPTH)/native_client/build/build_nexe.py', 849 '<(DEPTH)/native_client/build/build_nexe.py',
877 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 850 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
901 'actions': [ 874 'actions': [
902 { 875 {
903 'action_name': 'build IRT mips nexe', 876 'action_name': 'build IRT mips nexe',
904 'variables': { 877 'variables': {
905 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 878 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
906 }, 879 },
907 'msvs_cygwin_shell': 0, 880 'msvs_cygwin_shell': 0,
908 'description': 'building >(out_newlib_mips)', 881 'description': 'building >(out_newlib_mips)',
909 'inputs': [ 882 'inputs': [
910 '<(DEPTH)/native_client/build/build_nexe.py', 883 '<(DEPTH)/native_client/build/build_nexe.py',
911 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 884 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
912 '>@(extra_deps)', 885 '>@(extra_deps)',
913 '>@(extra_deps_newlib_mips)', 886 '>@(extra_deps_newlib_mips)',
914 '^(source_list_newlib_mips)', 887 '^(source_list_newlib_mips)',
915 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep', 888 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep',
916 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)', 889 '<(PRODUCT_DIR)/tls_edit<(EXECUTABLE_SUFFIX)',
917 ], 890 ],
918 'outputs': ['>(out_newlib_mips)'], 891 'outputs': ['>(out_newlib_mips)'],
919 'action': [ 892 'action': [
920 'python', 893 'python',
921 '<(DEPTH)/native_client/build/build_nexe.py', 894 '<(DEPTH)/native_client/build/build_nexe.py',
(...skipping 26 matching lines...) Expand all
948 'actions': [ 921 'actions': [
949 { 922 {
950 'action_name': 'build IRT mips nlib', 923 'action_name': 'build IRT mips nlib',
951 'variables': { 924 'variables': {
952 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 925 'source_list_newlib_mips%': '^|(<(tool_name)-mips.>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
953 }, 926 },
954 'msvs_cygwin_shell': 0, 927 'msvs_cygwin_shell': 0,
955 'description': 'building >(out_newlib_mips)', 928 'description': 'building >(out_newlib_mips)',
956 'inputs': [ 929 'inputs': [
957 '<(DEPTH)/native_client/build/build_nexe.py', 930 '<(DEPTH)/native_client/build/build_nexe.py',
958 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 931 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
959 '>@(extra_deps)', 932 '>@(extra_deps)',
960 '>@(extra_deps_newlib_mips)', 933 '>@(extra_deps_newlib_mips)',
961 '^(source_list_newlib_mips)', 934 '^(source_list_newlib_mips)',
962 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep', 935 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep',
963 ], 936 ],
964 'outputs': ['>(out_newlib_mips)'], 937 'outputs': ['>(out_newlib_mips)'],
965 'action': [ 938 'action': [
966 'python', 939 'python',
967 '<(DEPTH)/native_client/build/build_nexe.py', 940 '<(DEPTH)/native_client/build/build_nexe.py',
968 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 941 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 29 matching lines...) Expand all
998 'actions': [ 971 'actions': [
999 { 972 {
1000 'action_name': 'build glibc x86-64 nexe', 973 'action_name': 'build glibc x86-64 nexe',
1001 'variables': { 974 'variables': {
1002 'source_list_glibc64%': '^|(<(tool_name)-x86-64.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))', 975 'source_list_glibc64%': '^|(<(tool_name)-x86-64.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))',
1003 }, 976 },
1004 'msvs_cygwin_shell': 0, 977 'msvs_cygwin_shell': 0,
1005 'description': 'building >(out_glibc64)', 978 'description': 'building >(out_glibc64)',
1006 'inputs': [ 979 'inputs': [
1007 '<(DEPTH)/native_client/build/build_nexe.py', 980 '<(DEPTH)/native_client/build/build_nexe.py',
1008 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 981 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1009 '>@(extra_deps)', 982 '>@(extra_deps)',
1010 '>@(extra_deps_glibc64)', 983 '>@(extra_deps_glibc64)',
1011 '^(source_list_glibc64)', 984 '^(source_list_glibc64)',
1012 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 985 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1013 ], 986 ],
1014 'outputs': ['>(out_glibc64)'], 987 'outputs': ['>(out_glibc64)'],
1015 'action': [ 988 'action': [
1016 'python', 989 'python',
1017 '<(DEPTH)/native_client/build/build_nexe.py', 990 '<(DEPTH)/native_client/build/build_nexe.py',
1018 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 991 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
1042 'actions': [ 1015 'actions': [
1043 { 1016 {
1044 'action_name': 'build glibc x86-32 nexe', 1017 'action_name': 'build glibc x86-32 nexe',
1045 'variables': { 1018 'variables': {
1046 'source_list_glibc32%': '^|(<(tool_name)-x86-32.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))', 1019 'source_list_glibc32%': '^|(<(tool_name)-x86-32.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))',
1047 }, 1020 },
1048 'msvs_cygwin_shell': 0, 1021 'msvs_cygwin_shell': 0,
1049 'description': 'building >(out_glibc32)', 1022 'description': 'building >(out_glibc32)',
1050 'inputs': [ 1023 'inputs': [
1051 '<(DEPTH)/native_client/build/build_nexe.py', 1024 '<(DEPTH)/native_client/build/build_nexe.py',
1052 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1025 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1053 '>@(extra_deps)', 1026 '>@(extra_deps)',
1054 '>@(extra_deps_glibc32)', 1027 '>@(extra_deps_glibc32)',
1055 '^(source_list_glibc32)', 1028 '^(source_list_glibc32)',
1056 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 1029 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1057 ], 1030 ],
1058 'outputs': ['>(out_glibc32)'], 1031 'outputs': ['>(out_glibc32)'],
1059 'action': [ 1032 'action': [
1060 'python', 1033 'python',
1061 '<(DEPTH)/native_client/build/build_nexe.py', 1034 '<(DEPTH)/native_client/build/build_nexe.py',
1062 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1035 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
1086 'actions': [ 1059 'actions': [
1087 { 1060 {
1088 'action_name': 'build glibc x86-64 nlib', 1061 'action_name': 'build glibc x86-64 nlib',
1089 'variables': { 1062 'variables': {
1090 'source_list_glibc64%': '^|(<(tool_name)-x86-64.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))', 1063 'source_list_glibc64%': '^|(<(tool_name)-x86-64.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))',
1091 }, 1064 },
1092 'msvs_cygwin_shell': 0, 1065 'msvs_cygwin_shell': 0,
1093 'description': 'building >(out_glibc64)', 1066 'description': 'building >(out_glibc64)',
1094 'inputs': [ 1067 'inputs': [
1095 '<(DEPTH)/native_client/build/build_nexe.py', 1068 '<(DEPTH)/native_client/build/build_nexe.py',
1096 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1069 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1097 '>@(extra_deps)', 1070 '>@(extra_deps)',
1098 '>@(extra_deps_glibc64)', 1071 '>@(extra_deps_glibc64)',
1099 '^(source_list_glibc64)', 1072 '^(source_list_glibc64)',
1100 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 1073 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1101 ], 1074 ],
1102 'outputs': ['>(out_glibc64)'], 1075 'outputs': ['>(out_glibc64)'],
1103 'action': [ 1076 'action': [
1104 'python', 1077 'python',
1105 '<(DEPTH)/native_client/build/build_nexe.py', 1078 '<(DEPTH)/native_client/build/build_nexe.py',
1106 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1079 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
1130 'actions': [ 1103 'actions': [
1131 { 1104 {
1132 'action_name': 'build glibc x86-32 nlib', 1105 'action_name': 'build glibc x86-32 nlib',
1133 'variables': { 1106 'variables': {
1134 'source_list_glibc32%': '^|(<(tool_name)-x86-32.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))', 1107 'source_list_glibc32%': '^|(<(tool_name)-x86-32.>(_target_nam e).source_list.gypcmd ^(_sources) ^(sources))',
1135 }, 1108 },
1136 'msvs_cygwin_shell': 0, 1109 'msvs_cygwin_shell': 0,
1137 'description': 'building >(out_glibc32)', 1110 'description': 'building >(out_glibc32)',
1138 'inputs': [ 1111 'inputs': [
1139 '<(DEPTH)/native_client/build/build_nexe.py', 1112 '<(DEPTH)/native_client/build/build_nexe.py',
1140 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1113 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1141 '>@(extra_deps)', 1114 '>@(extra_deps)',
1142 '>@(extra_deps_glibc32)', 1115 '>@(extra_deps_glibc32)',
1143 '^(source_list_glibc32)', 1116 '^(source_list_glibc32)',
1144 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 1117 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1145 ], 1118 ],
1146 'outputs': ['>(out_glibc32)'], 1119 'outputs': ['>(out_glibc32)'],
1147 'action': [ 1120 'action': [
1148 'python', 1121 'python',
1149 '<(DEPTH)/native_client/build/build_nexe.py', 1122 '<(DEPTH)/native_client/build/build_nexe.py',
1150 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1123 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 23 matching lines...) Expand all
1174 'actions': [ 1147 'actions': [
1175 { 1148 {
1176 'action_name': 'build glibc x86-64 nso', 1149 'action_name': 'build glibc x86-64 nso',
1177 'variables': { 1150 'variables': {
1178 'source_list_glibc64%': '^|(<(tool_name)-x86-64-so.>(_target_ name).source_list.gypcmd ^(_sources) ^(sources))', 1151 'source_list_glibc64%': '^|(<(tool_name)-x86-64-so.>(_target_ name).source_list.gypcmd ^(_sources) ^(sources))',
1179 }, 1152 },
1180 'msvs_cygwin_shell': 0, 1153 'msvs_cygwin_shell': 0,
1181 'description': 'building >(out_glibc64)', 1154 'description': 'building >(out_glibc64)',
1182 'inputs': [ 1155 'inputs': [
1183 '<(DEPTH)/native_client/build/build_nexe.py', 1156 '<(DEPTH)/native_client/build/build_nexe.py',
1184 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1157 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1185 '>@(extra_deps)', 1158 '>@(extra_deps)',
1186 '>@(extra_deps_glibc64)', 1159 '>@(extra_deps_glibc64)',
1187 '^(source_list_glibc64)', 1160 '^(source_list_glibc64)',
1188 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 1161 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1189 ], 1162 ],
1190 'outputs': ['>(out_glibc64)'], 1163 'outputs': ['>(out_glibc64)'],
1191 'action': [ 1164 'action': [
1192 'python', 1165 'python',
1193 '<(DEPTH)/native_client/build/build_nexe.py', 1166 '<(DEPTH)/native_client/build/build_nexe.py',
1194 '>@(extra_args)', 1167 '>@(extra_args)',
(...skipping 23 matching lines...) Expand all
1218 'actions': [ 1191 'actions': [
1219 { 1192 {
1220 'action_name': 'build glibc x86-32 nso', 1193 'action_name': 'build glibc x86-32 nso',
1221 'variables': { 1194 'variables': {
1222 'source_list_glibc32%': '^|(<(tool_name)-x86-32-so.>(_target_ name).source_list.gypcmd ^(_sources) ^(sources))', 1195 'source_list_glibc32%': '^|(<(tool_name)-x86-32-so.>(_target_ name).source_list.gypcmd ^(_sources) ^(sources))',
1223 }, 1196 },
1224 'msvs_cygwin_shell': 0, 1197 'msvs_cygwin_shell': 0,
1225 'description': 'building >(out_glibc32)', 1198 'description': 'building >(out_glibc32)',
1226 'inputs': [ 1199 'inputs': [
1227 '<(DEPTH)/native_client/build/build_nexe.py', 1200 '<(DEPTH)/native_client/build/build_nexe.py',
1228 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1201 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_inclu de_dirs) -S >(sources) >(_sources))',
1229 '>@(extra_deps)', 1202 '>@(extra_deps)',
1230 '>@(extra_deps_glibc32)', 1203 '>@(extra_deps_glibc32)',
1231 '^(source_list_glibc32)', 1204 '^(source_list_glibc32)',
1232 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep', 1205 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/nacl_x86 _glibc/stamp.prep',
1233 ], 1206 ],
1234 'outputs': ['>(out_glibc32)'], 1207 'outputs': ['>(out_glibc32)'],
1235 'action': [ 1208 'action': [
1236 'python', 1209 'python',
1237 '<(DEPTH)/native_client/build/build_nexe.py', 1210 '<(DEPTH)/native_client/build/build_nexe.py',
1238 '>@(extra_args)', 1211 '>@(extra_args)',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 'actions': [ 1299 'actions': [
1327 { 1300 {
1328 'action_name': 'build newlib pexe', 1301 'action_name': 'build newlib pexe',
1329 'variables': { 1302 'variables': {
1330 'source_list_pnacl_newlib%': '^|(<(tool_name).>(_target_name).sou rce_list.gypcmd ^(_sources) ^(sources))', 1303 'source_list_pnacl_newlib%': '^|(<(tool_name).>(_target_name).sou rce_list.gypcmd ^(_sources) ^(sources))',
1331 }, 1304 },
1332 'msvs_cygwin_shell': 0, 1305 'msvs_cygwin_shell': 0,
1333 'description': 'building >(out_pnacl_newlib)', 1306 'description': 'building >(out_pnacl_newlib)',
1334 'inputs': [ 1307 'inputs': [
1335 '<(DEPTH)/native_client/build/build_nexe.py', 1308 '<(DEPTH)/native_client/build/build_nexe.py',
1336 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1309 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_include_di rs) -S >(sources) >(_sources))',
1337 '>@(extra_deps)', 1310 '>@(extra_deps)',
1338 '>@(extra_deps_pnacl_newlib)', 1311 '>@(extra_deps_pnacl_newlib)',
1339 '^(source_list_pnacl_newlib)', 1312 '^(source_list_pnacl_newlib)',
1340 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newlib/ stamp.prep', 1313 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newlib/ stamp.prep',
1341 ], 1314 ],
1342 'outputs': ['>(out_pnacl_newlib)'], 1315 'outputs': ['>(out_pnacl_newlib)'],
1343 'action': [ 1316 'action': [
1344 'python', 1317 'python',
1345 '<(DEPTH)/native_client/build/build_nexe.py', 1318 '<(DEPTH)/native_client/build/build_nexe.py',
1346 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1319 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 'actions': [ 1470 'actions': [
1498 { 1471 {
1499 'action_name': 'build newlib plib', 1472 'action_name': 'build newlib plib',
1500 'variables': { 1473 'variables': {
1501 'source_list_pnacl_newlib%': '^|(<(tool_name).>(_target_name).sou rce_list.gypcmd ^(_sources) ^(sources))', 1474 'source_list_pnacl_newlib%': '^|(<(tool_name).>(_target_name).sou rce_list.gypcmd ^(_sources) ^(sources))',
1502 }, 1475 },
1503 'msvs_cygwin_shell': 0, 1476 'msvs_cygwin_shell': 0,
1504 'description': 'building >(out_pnacl_newlib)', 1477 'description': 'building >(out_pnacl_newlib)',
1505 'inputs': [ 1478 'inputs': [
1506 '<(DEPTH)/native_client/build/build_nexe.py', 1479 '<(DEPTH)/native_client/build/build_nexe.py',
1507 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1480 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_include_di rs) -S >(sources) >(_sources))',
1508 '>@(extra_deps)', 1481 '>@(extra_deps)',
1509 '>@(extra_deps_pnacl_newlib)', 1482 '>@(extra_deps_pnacl_newlib)',
1510 '^(source_list_pnacl_newlib)', 1483 '^(source_list_pnacl_newlib)',
1511 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newlib/ stamp.prep', 1484 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newlib/ stamp.prep',
1512 ], 1485 ],
1513 'outputs': ['>(out_pnacl_newlib)'], 1486 'outputs': ['>(out_pnacl_newlib)'],
1514 'action': [ 1487 'action': [
1515 'python', 1488 'python',
1516 '<(DEPTH)/native_client/build/build_nexe.py', 1489 '<(DEPTH)/native_client/build/build_nexe.py',
1517 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1490 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 28 matching lines...) Expand all
1546 'actions': [ 1519 'actions': [
1547 { 1520 {
1548 'action_name': 'build newlib arm nlib (via pnacl)', 1521 'action_name': 'build newlib arm nlib (via pnacl)',
1549 'variables': { 1522 'variables': {
1550 'source_list_pnacl_newlib_arm%': '^|(<(tool_name).>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))', 1523 'source_list_pnacl_newlib_arm%': '^|(<(tool_name).>(_target_na me).source_list.gypcmd ^(_sources) ^(sources))',
1551 }, 1524 },
1552 'msvs_cygwin_shell': 0, 1525 'msvs_cygwin_shell': 0,
1553 'description': 'building >(out_pnacl_newlib_arm)', 1526 'description': 'building >(out_pnacl_newlib_arm)',
1554 'inputs': [ 1527 'inputs': [
1555 '<(DEPTH)/native_client/build/build_nexe.py', 1528 '<(DEPTH)/native_client/build/build_nexe.py',
1556 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1529 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_include _dirs) -S >(sources) >(_sources))',
1557 '>@(extra_deps)', 1530 '>@(extra_deps)',
1558 '>@(extra_deps_pnacl_newlib)', 1531 '>@(extra_deps_pnacl_newlib)',
1559 '^(source_list_pnacl_newlib_arm)', 1532 '^(source_list_pnacl_newlib_arm)',
1560 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newl ib/stamp.prep' 1533 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newl ib/stamp.prep'
1561 ], 1534 ],
1562 'outputs': ['>(out_pnacl_newlib_arm)'], 1535 'outputs': ['>(out_pnacl_newlib_arm)'],
1563 'action': [ 1536 'action': [
1564 'python', 1537 'python',
1565 '<(DEPTH)/native_client/build/build_nexe.py', 1538 '<(DEPTH)/native_client/build/build_nexe.py',
1566 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1539 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 29 matching lines...) Expand all
1596 'actions': [ 1569 'actions': [
1597 { 1570 {
1598 'action_name': 'build newlib x86-64 nlib (via pnacl)', 1571 'action_name': 'build newlib x86-64 nlib (via pnacl)',
1599 'variables': { 1572 'variables': {
1600 'source_list_pnacl_newlib_x86_64%': '^|(<(tool_name).>(_targe t_name).source_list.gypcmd ^(_sources) ^(sources))', 1573 'source_list_pnacl_newlib_x86_64%': '^|(<(tool_name).>(_targe t_name).source_list.gypcmd ^(_sources) ^(sources))',
1601 }, 1574 },
1602 'msvs_cygwin_shell': 0, 1575 'msvs_cygwin_shell': 0,
1603 'description': 'building >(out_pnacl_newlib_x86_64)', 1576 'description': 'building >(out_pnacl_newlib_x86_64)',
1604 'inputs': [ 1577 'inputs': [
1605 '<(DEPTH)/native_client/build/build_nexe.py', 1578 '<(DEPTH)/native_client/build/build_nexe.py',
1606 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1579 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
1607 '>@(extra_deps)', 1580 '>@(extra_deps)',
1608 '>@(extra_deps_pnacl_newlib)', 1581 '>@(extra_deps_pnacl_newlib)',
1609 '^(source_list_pnacl_newlib_x86_64)', 1582 '^(source_list_pnacl_newlib_x86_64)',
1610 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep' 1583 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep'
1611 ], 1584 ],
1612 'outputs': ['>(out_pnacl_newlib_x86_64)'], 1585 'outputs': ['>(out_pnacl_newlib_x86_64)'],
1613 'action': [ 1586 'action': [
1614 'python', 1587 'python',
1615 '<(DEPTH)/native_client/build/build_nexe.py', 1588 '<(DEPTH)/native_client/build/build_nexe.py',
1616 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1589 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 24 matching lines...) Expand all
1641 'actions': [ 1614 'actions': [
1642 { 1615 {
1643 'action_name': 'build newlib x86-32 nlib (via pnacl)', 1616 'action_name': 'build newlib x86-32 nlib (via pnacl)',
1644 'variables': { 1617 'variables': {
1645 'source_list_pnacl_newlib_x86_32%': '^|(<(tool_name).>(_targe t_name).source_list.gypcmd ^(_sources) ^(sources))', 1618 'source_list_pnacl_newlib_x86_32%': '^|(<(tool_name).>(_targe t_name).source_list.gypcmd ^(_sources) ^(sources))',
1646 }, 1619 },
1647 'msvs_cygwin_shell': 0, 1620 'msvs_cygwin_shell': 0,
1648 'description': 'building >(out_pnacl_newlib_x86_32)', 1621 'description': 'building >(out_pnacl_newlib_x86_32)',
1649 'inputs': [ 1622 'inputs': [
1650 '<(DEPTH)/native_client/build/build_nexe.py', 1623 '<(DEPTH)/native_client/build/build_nexe.py',
1651 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1624 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
1652 '>@(extra_deps)', 1625 '>@(extra_deps)',
1653 '>@(extra_deps_pnacl_newlib)', 1626 '>@(extra_deps_pnacl_newlib)',
1654 '^(source_list_pnacl_newlib_x86_32)', 1627 '^(source_list_pnacl_newlib_x86_32)',
1655 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep' 1628 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep'
1656 ], 1629 ],
1657 'outputs': ['>(out_pnacl_newlib_x86_32)'], 1630 'outputs': ['>(out_pnacl_newlib_x86_32)'],
1658 'action': [ 1631 'action': [
1659 'python', 1632 'python',
1660 '<(DEPTH)/native_client/build/build_nexe.py', 1633 '<(DEPTH)/native_client/build/build_nexe.py',
1661 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1634 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 28 matching lines...) Expand all
1690 'actions': [ 1663 'actions': [
1691 { 1664 {
1692 'action_name': 'build newlib x86-32-nonsfi nlib (via pnacl)', 1665 'action_name': 'build newlib x86-32-nonsfi nlib (via pnacl)',
1693 'variables': { 1666 'variables': {
1694 'source_list_pnacl_newlib_x86_32_nonsfi%': '^|(<(tool_name).> (_target_name).source_list.gypcmd ^(_sources) ^(sources))', 1667 'source_list_pnacl_newlib_x86_32_nonsfi%': '^|(<(tool_name).> (_target_name).source_list.gypcmd ^(_sources) ^(sources))',
1695 }, 1668 },
1696 'msvs_cygwin_shell': 0, 1669 'msvs_cygwin_shell': 0,
1697 'description': 'building >(out_pnacl_newlib_x86_32_nonsfi)', 1670 'description': 'building >(out_pnacl_newlib_x86_32_nonsfi)',
1698 'inputs': [ 1671 'inputs': [
1699 '<(DEPTH)/native_client/build/build_nexe.py', 1672 '<(DEPTH)/native_client/build/build_nexe.py',
1700 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1673 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_includ e_dirs) -S >(sources) >(_sources))',
1701 '>@(extra_deps)', 1674 '>@(extra_deps)',
1702 '>@(extra_deps_pnacl_newlib)', 1675 '>@(extra_deps_pnacl_newlib)',
1703 '^(source_list_pnacl_newlib_x86_32_nonsfi)', 1676 '^(source_list_pnacl_newlib_x86_32_nonsfi)',
1704 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep' 1677 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_new lib/stamp.prep'
1705 ], 1678 ],
1706 'outputs': ['>(out_pnacl_newlib_x86_32_nonsfi)'], 1679 'outputs': ['>(out_pnacl_newlib_x86_32_nonsfi)'],
1707 'action': [ 1680 'action': [
1708 'python', 1681 'python',
1709 '<(DEPTH)/native_client/build/build_nexe.py', 1682 '<(DEPTH)/native_client/build/build_nexe.py',
1710 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1683 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 28 matching lines...) Expand all
1739 'actions': [ 1712 'actions': [
1740 { 1713 {
1741 'action_name': 'build newlib mips nlib (via pnacl)', 1714 'action_name': 'build newlib mips nlib (via pnacl)',
1742 'variables': { 1715 'variables': {
1743 'source_list_pnacl_newlib_mips%': '^|(<(tool_name).>(_target_n ame).source_list.gypcmd ^(_sources) ^(sources))', 1716 'source_list_pnacl_newlib_mips%': '^|(<(tool_name).>(_target_n ame).source_list.gypcmd ^(_sources) ^(sources))',
1744 }, 1717 },
1745 'msvs_cygwin_shell': 0, 1718 'msvs_cygwin_shell': 0,
1746 'description': 'building >(out_pnacl_newlib_mips)', 1719 'description': 'building >(out_pnacl_newlib_mips)',
1747 'inputs': [ 1720 'inputs': [
1748 '<(DEPTH)/native_client/build/build_nexe.py', 1721 '<(DEPTH)/native_client/build/build_nexe.py',
1749 '>!@pymod_do_main(>(get_sources) >(sources) >(_sources))', 1722 '>!@pymod_do_main(scan_sources -I . >(include_dirs) >(_include _dirs) -S >(sources) >(_sources))',
1750 '>@(extra_deps)', 1723 '>@(extra_deps)',
1751 '>@(extra_deps_pnacl_newlib)', 1724 '>@(extra_deps_pnacl_newlib)',
1752 '^(source_list_pnacl_newlib_mips)', 1725 '^(source_list_pnacl_newlib_mips)',
1753 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newl ib/stamp.prep' 1726 '<(SHARED_INTERMEDIATE_DIR)/sdk/<(TOOLCHAIN_OS)_x86/pnacl_newl ib/stamp.prep'
1754 ], 1727 ],
1755 'outputs': ['>(out_pnacl_newlib_mips)'], 1728 'outputs': ['>(out_pnacl_newlib_mips)'],
1756 'action': [ 1729 'action': [
1757 'python', 1730 'python',
1758 '<(DEPTH)/native_client/build/build_nexe.py', 1731 '<(DEPTH)/native_client/build/build_nexe.py',
1759 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/', 1732 '-t', '<(SHARED_INTERMEDIATE_DIR)/sdk/',
(...skipping 12 matching lines...) Expand all
1772 ], 1745 ],
1773 }, 1746 },
1774 ], 1747 ],
1775 }], 1748 }],
1776 ], 1749 ],
1777 }], # end MIPS 1750 }], # end MIPS
1778 # end pnacl actions for building ABI-biased native libraries 1751 # end pnacl actions for building ABI-biased native libraries
1779 ], # end conditions for pnacl biased nlib 1752 ], # end conditions for pnacl biased nlib
1780 }, 1753 },
1781 } 1754 }
OLDNEW
« no previous file with comments | « build/scan_sources.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698