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

Side by Side Diff: tools/gyp/v8.gyp

Issue 255022: Remove obsolete support for an experimental multipass compiler. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 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 | « src/x64/cfg-x64.cc ('k') | tools/visual_studio/v8_base.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 '../../src/arguments.h', 212 '../../src/arguments.h',
213 '../../src/assembler.cc', 213 '../../src/assembler.cc',
214 '../../src/assembler.h', 214 '../../src/assembler.h',
215 '../../src/ast.cc', 215 '../../src/ast.cc',
216 '../../src/ast.h', 216 '../../src/ast.h',
217 '../../src/bootstrapper.cc', 217 '../../src/bootstrapper.cc',
218 '../../src/bootstrapper.h', 218 '../../src/bootstrapper.h',
219 '../../src/builtins.cc', 219 '../../src/builtins.cc',
220 '../../src/builtins.h', 220 '../../src/builtins.h',
221 '../../src/bytecodes-irregexp.h', 221 '../../src/bytecodes-irregexp.h',
222 '../../src/cfg.cc',
223 '../../src/cfg.h',
224 '../../src/char-predicates-inl.h', 222 '../../src/char-predicates-inl.h',
225 '../../src/char-predicates.h', 223 '../../src/char-predicates.h',
226 '../../src/checks.cc', 224 '../../src/checks.cc',
227 '../../src/checks.h', 225 '../../src/checks.h',
228 '../../src/code-stubs.cc', 226 '../../src/code-stubs.cc',
229 '../../src/code-stubs.h', 227 '../../src/code-stubs.h',
230 '../../src/code.h', 228 '../../src/code.h',
231 '../../src/codegen-inl.h', 229 '../../src/codegen-inl.h',
232 '../../src/codegen.cc', 230 '../../src/codegen.cc',
233 '../../src/codegen.h', 231 '../../src/codegen.h',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'conditions': [ 381 'conditions': [
384 ['target_arch=="arm"', { 382 ['target_arch=="arm"', {
385 'include_dirs+': [ 383 'include_dirs+': [
386 '../../src/arm', 384 '../../src/arm',
387 ], 385 ],
388 'sources': [ 386 'sources': [
389 '../../src/arm/assembler-arm-inl.h', 387 '../../src/arm/assembler-arm-inl.h',
390 '../../src/arm/assembler-arm.cc', 388 '../../src/arm/assembler-arm.cc',
391 '../../src/arm/assembler-arm.h', 389 '../../src/arm/assembler-arm.h',
392 '../../src/arm/builtins-arm.cc', 390 '../../src/arm/builtins-arm.cc',
393 '../../src/arm/cfg-arm.cc',
394 '../../src/arm/codegen-arm.cc', 391 '../../src/arm/codegen-arm.cc',
395 '../../src/arm/codegen-arm.h', 392 '../../src/arm/codegen-arm.h',
396 '../../src/arm/constants-arm.h', 393 '../../src/arm/constants-arm.h',
397 '../../src/arm/cpu-arm.cc', 394 '../../src/arm/cpu-arm.cc',
398 '../../src/arm/debug-arm.cc', 395 '../../src/arm/debug-arm.cc',
399 '../../src/arm/disasm-arm.cc', 396 '../../src/arm/disasm-arm.cc',
400 '../../src/arm/frames-arm.cc', 397 '../../src/arm/frames-arm.cc',
401 '../../src/arm/frames-arm.h', 398 '../../src/arm/frames-arm.h',
402 '../../src/arm/ic-arm.cc', 399 '../../src/arm/ic-arm.cc',
403 '../../src/arm/jump-target-arm.cc', 400 '../../src/arm/jump-target-arm.cc',
(...skipping 10 matching lines...) Expand all
414 }], 411 }],
415 ['target_arch=="ia32"', { 412 ['target_arch=="ia32"', {
416 'include_dirs+': [ 413 'include_dirs+': [
417 '../../src/ia32', 414 '../../src/ia32',
418 ], 415 ],
419 'sources': [ 416 'sources': [
420 '../../src/ia32/assembler-ia32-inl.h', 417 '../../src/ia32/assembler-ia32-inl.h',
421 '../../src/ia32/assembler-ia32.cc', 418 '../../src/ia32/assembler-ia32.cc',
422 '../../src/ia32/assembler-ia32.h', 419 '../../src/ia32/assembler-ia32.h',
423 '../../src/ia32/builtins-ia32.cc', 420 '../../src/ia32/builtins-ia32.cc',
424 '../../src/ia32/cfg-ia32.cc',
425 '../../src/ia32/codegen-ia32.cc', 421 '../../src/ia32/codegen-ia32.cc',
426 '../../src/ia32/codegen-ia32.h', 422 '../../src/ia32/codegen-ia32.h',
427 '../../src/ia32/cpu-ia32.cc', 423 '../../src/ia32/cpu-ia32.cc',
428 '../../src/ia32/debug-ia32.cc', 424 '../../src/ia32/debug-ia32.cc',
429 '../../src/ia32/disasm-ia32.cc', 425 '../../src/ia32/disasm-ia32.cc',
430 '../../src/ia32/frames-ia32.cc', 426 '../../src/ia32/frames-ia32.cc',
431 '../../src/ia32/frames-ia32.h', 427 '../../src/ia32/frames-ia32.h',
432 '../../src/ia32/ic-ia32.cc', 428 '../../src/ia32/ic-ia32.cc',
433 '../../src/ia32/jump-target-ia32.cc', 429 '../../src/ia32/jump-target-ia32.cc',
434 '../../src/ia32/macro-assembler-ia32.cc', 430 '../../src/ia32/macro-assembler-ia32.cc',
435 '../../src/ia32/macro-assembler-ia32.h', 431 '../../src/ia32/macro-assembler-ia32.h',
436 '../../src/ia32/regexp-macro-assembler-ia32.cc', 432 '../../src/ia32/regexp-macro-assembler-ia32.cc',
437 '../../src/ia32/regexp-macro-assembler-ia32.h', 433 '../../src/ia32/regexp-macro-assembler-ia32.h',
438 '../../src/ia32/register-allocator-ia32.cc', 434 '../../src/ia32/register-allocator-ia32.cc',
439 '../../src/ia32/stub-cache-ia32.cc', 435 '../../src/ia32/stub-cache-ia32.cc',
440 '../../src/ia32/virtual-frame-ia32.cc', 436 '../../src/ia32/virtual-frame-ia32.cc',
441 '../../src/ia32/virtual-frame-ia32.h', 437 '../../src/ia32/virtual-frame-ia32.h',
442 ], 438 ],
443 }], 439 }],
444 ['target_arch=="x64"', { 440 ['target_arch=="x64"', {
445 'include_dirs+': [ 441 'include_dirs+': [
446 '../../src/x64', 442 '../../src/x64',
447 ], 443 ],
448 'sources': [ 444 'sources': [
449 '../../src/x64/assembler-x64-inl.h', 445 '../../src/x64/assembler-x64-inl.h',
450 '../../src/x64/assembler-x64.cc', 446 '../../src/x64/assembler-x64.cc',
451 '../../src/x64/assembler-x64.h', 447 '../../src/x64/assembler-x64.h',
452 '../../src/x64/builtins-x64.cc', 448 '../../src/x64/builtins-x64.cc',
453 '../../src/x64/cfg-x64.cc',
454 '../../src/x64/codegen-x64.cc', 449 '../../src/x64/codegen-x64.cc',
455 '../../src/x64/codegen-x64.h', 450 '../../src/x64/codegen-x64.h',
456 '../../src/x64/cpu-x64.cc', 451 '../../src/x64/cpu-x64.cc',
457 '../../src/x64/debug-x64.cc', 452 '../../src/x64/debug-x64.cc',
458 '../../src/x64/disasm-x64.cc', 453 '../../src/x64/disasm-x64.cc',
459 '../../src/x64/frames-x64.cc', 454 '../../src/x64/frames-x64.cc',
460 '../../src/x64/frames-x64.h', 455 '../../src/x64/frames-x64.h',
461 '../../src/x64/ic-x64.cc', 456 '../../src/x64/ic-x64.cc',
462 '../../src/x64/jump-target-x64.cc', 457 '../../src/x64/jump-target-x64.cc',
463 '../../src/x64/macro-assembler-x64.cc', 458 '../../src/x64/macro-assembler-x64.cc',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 ], 565 ],
571 'conditions': [ 566 'conditions': [
572 [ 'OS=="win"', { 567 [ 'OS=="win"', {
573 # This could be gotten by not setting chromium_code, if that's OK. 568 # This could be gotten by not setting chromium_code, if that's OK.
574 'defines': ['_CRT_SECURE_NO_WARNINGS'], 569 'defines': ['_CRT_SECURE_NO_WARNINGS'],
575 }], 570 }],
576 ], 571 ],
577 }, 572 },
578 ], 573 ],
579 } 574 }
OLDNEW
« no previous file with comments | « src/x64/cfg-x64.cc ('k') | tools/visual_studio/v8_base.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698