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

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

Issue 159502: Add x64 to the gyp build. (Closed)
Patch Set: Created 11 years, 4 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
« no previous file with comments | « no previous file | 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 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'defines': [ 45 'defines': [
46 'V8_TARGET_ARCH_ARM', 46 'V8_TARGET_ARCH_ARM',
47 ], 47 ],
48 }], 48 }],
49 ['target_arch=="ia32"', { 49 ['target_arch=="ia32"', {
50 'defines': [ 50 'defines': [
51 'V8_TARGET_ARCH_IA32', 51 'V8_TARGET_ARCH_IA32',
52 'V8_NATIVE_REGEXP', 52 'V8_NATIVE_REGEXP',
53 ], 53 ],
54 }], 54 }],
55 ['target_arch=="x64"', {
56 'defines': [
57 'V8_TARGET_ARCH_X64',
58 ],
59 }],
55 ], 60 ],
56 'configurations': { 61 'configurations': {
57 'Debug': { 62 'Debug': {
58 'defines': [ 63 'defines': [
59 'DEBUG', 64 'DEBUG',
60 '_DEBUG', 65 '_DEBUG',
61 'ENABLE_DISASSEMBLER', 66 'ENABLE_DISASSEMBLER',
62 ], 67 ],
63 'msvs_settings': { 68 'msvs_settings': {
64 'VCCLCompilerTool': { 69 'VCCLCompilerTool': {
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 '../../src/ia32/macro-assembler-ia32.cc', 426 '../../src/ia32/macro-assembler-ia32.cc',
422 '../../src/ia32/macro-assembler-ia32.h', 427 '../../src/ia32/macro-assembler-ia32.h',
423 '../../src/ia32/regexp-macro-assembler-ia32.cc', 428 '../../src/ia32/regexp-macro-assembler-ia32.cc',
424 '../../src/ia32/regexp-macro-assembler-ia32.h', 429 '../../src/ia32/regexp-macro-assembler-ia32.h',
425 '../../src/ia32/register-allocator-ia32.cc', 430 '../../src/ia32/register-allocator-ia32.cc',
426 '../../src/ia32/stub-cache-ia32.cc', 431 '../../src/ia32/stub-cache-ia32.cc',
427 '../../src/ia32/virtual-frame-ia32.cc', 432 '../../src/ia32/virtual-frame-ia32.cc',
428 '../../src/ia32/virtual-frame-ia32.h', 433 '../../src/ia32/virtual-frame-ia32.h',
429 ], 434 ],
430 }], 435 }],
436 ['target_arch=="x64"', {
437 'include_dirs+': [
438 '../../src/x64',
439 ],
440 'sources': [
441 '../../src/x64/assembler-x64-inl.h',
442 '../../src/x64/assembler-x64.cc',
443 '../../src/x64/assembler-x64.h',
444 '../../src/x64/builtins-x64.cc',
445 '../../src/x64/codegen-x64.cc',
446 '../../src/x64/codegen-x64.h',
447 '../../src/x64/cpu-x64.cc',
448 '../../src/x64/debug-x64.cc',
449 '../../src/x64/disasm-x64.cc',
450 '../../src/x64/frames-x64.cc',
451 '../../src/x64/frames-x64.h',
452 '../../src/x64/ic-x64.cc',
453 '../../src/x64/jump-target-x64.cc',
454 '../../src/x64/macro-assembler-x64.cc',
455 '../../src/x64/macro-assembler-x64.h',
456 #'../../src/x64/regexp-macro-assembler-x64.cc',
457 #'../../src/x64/regexp-macro-assembler-x64.h',
458 '../../src/x64/register-allocator-x64.cc',
459 '../../src/x64/stub-cache-x64.cc',
460 '../../src/x64/virtual-frame-x64.cc',
461 '../../src/x64/virtual-frame-x64.h',
462 ],
463 }],
431 ['OS=="linux"', { 464 ['OS=="linux"', {
432 'link_settings': { 465 'link_settings': {
433 'libraries': [ 466 'libraries': [
434 # Needed for clock_gettime() used by src/platform-linux.cc. 467 # Needed for clock_gettime() used by src/platform-linux.cc.
435 '-lrt', 468 '-lrt',
436 ]}, 469 ]},
437 'sources': [ 470 'sources': [
438 '../../src/platform-linux.cc', 471 '../../src/platform-linux.cc',
439 '../../src/platform-posix.cc' 472 '../../src/platform-posix.cc'
440 ], 473 ],
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 ], 561 ],
529 'conditions': [ 562 'conditions': [
530 [ 'OS=="win"', { 563 [ 'OS=="win"', {
531 # This could be gotten by not setting chromium_code, if that's OK. 564 # This could be gotten by not setting chromium_code, if that's OK.
532 'defines': ['_CRT_SECURE_NO_WARNINGS'], 565 'defines': ['_CRT_SECURE_NO_WARNINGS'],
533 }], 566 }],
534 ], 567 ],
535 }, 568 },
536 ], 569 ],
537 } 570 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698