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

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

Issue 165443: X64: Implement RegExp natively. (Closed)
Patch Set: Addressed review comments. 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
« src/regexp-macro-assembler.cc ('K') | « test/mozilla/mozilla.status ('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 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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"', { 55 ['target_arch=="x64"', {
56 'defines': [ 56 'defines': [
57 'V8_TARGET_ARCH_X64', 57 'V8_TARGET_ARCH_X64',
58 'V8_NATIVE_REGEXP',
58 ], 59 ],
59 }], 60 }],
60 ], 61 ],
61 'configurations': { 62 'configurations': {
62 'Debug': { 63 'Debug': {
63 'defines': [ 64 'defines': [
64 'DEBUG', 65 'DEBUG',
65 '_DEBUG', 66 '_DEBUG',
66 'ENABLE_DISASSEMBLER', 67 'ENABLE_DISASSEMBLER',
67 ], 68 ],
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 '../../src/x64/codegen-x64.h', 451 '../../src/x64/codegen-x64.h',
451 '../../src/x64/cpu-x64.cc', 452 '../../src/x64/cpu-x64.cc',
452 '../../src/x64/debug-x64.cc', 453 '../../src/x64/debug-x64.cc',
453 '../../src/x64/disasm-x64.cc', 454 '../../src/x64/disasm-x64.cc',
454 '../../src/x64/frames-x64.cc', 455 '../../src/x64/frames-x64.cc',
455 '../../src/x64/frames-x64.h', 456 '../../src/x64/frames-x64.h',
456 '../../src/x64/ic-x64.cc', 457 '../../src/x64/ic-x64.cc',
457 '../../src/x64/jump-target-x64.cc', 458 '../../src/x64/jump-target-x64.cc',
458 '../../src/x64/macro-assembler-x64.cc', 459 '../../src/x64/macro-assembler-x64.cc',
459 '../../src/x64/macro-assembler-x64.h', 460 '../../src/x64/macro-assembler-x64.h',
460 #'../../src/x64/regexp-macro-assembler-x64.cc', 461 '../../src/x64/regexp-macro-assembler-x64.cc',
461 #'../../src/x64/regexp-macro-assembler-x64.h', 462 '../../src/x64/regexp-macro-assembler-x64.h',
462 '../../src/x64/register-allocator-x64.cc', 463 '../../src/x64/register-allocator-x64.cc',
463 '../../src/x64/stub-cache-x64.cc', 464 '../../src/x64/stub-cache-x64.cc',
464 '../../src/x64/virtual-frame-x64.cc', 465 '../../src/x64/virtual-frame-x64.cc',
465 '../../src/x64/virtual-frame-x64.h', 466 '../../src/x64/virtual-frame-x64.h',
466 ], 467 ],
467 }], 468 }],
468 ['OS=="linux"', { 469 ['OS=="linux"', {
469 'link_settings': { 470 'link_settings': {
470 'libraries': [ 471 'libraries': [
471 # Needed for clock_gettime() used by src/platform-linux.cc. 472 # Needed for clock_gettime() used by src/platform-linux.cc.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 ], 566 ],
566 'conditions': [ 567 'conditions': [
567 [ 'OS=="win"', { 568 [ 'OS=="win"', {
568 # This could be gotten by not setting chromium_code, if that's OK. 569 # This could be gotten by not setting chromium_code, if that's OK.
569 'defines': ['_CRT_SECURE_NO_WARNINGS'], 570 'defines': ['_CRT_SECURE_NO_WARNINGS'],
570 }], 571 }],
571 ], 572 ],
572 }, 573 },
573 ], 574 ],
574 } 575 }
OLDNEW
« src/regexp-macro-assembler.cc ('K') | « test/mozilla/mozilla.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698