| OLD | NEW |
| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 '../../src/ia32/stub-cache-ia32.cc', | 438 '../../src/ia32/stub-cache-ia32.cc', |
| 439 '../../src/ia32/virtual-frame-ia32.cc', | 439 '../../src/ia32/virtual-frame-ia32.cc', |
| 440 '../../src/ia32/virtual-frame-ia32.h', | 440 '../../src/ia32/virtual-frame-ia32.h', |
| 441 ], | 441 ], |
| 442 }], | 442 }], |
| 443 ['target_arch=="x64"', { | 443 ['target_arch=="x64"', { |
| 444 'include_dirs+': [ | 444 'include_dirs+': [ |
| 445 '../../src/x64', | 445 '../../src/x64', |
| 446 ], | 446 ], |
| 447 'sources': [ | 447 'sources': [ |
| 448 '../../src/fast-codegen.cc', |
| 449 '../../src/fast-codegen.h', |
| 448 '../../src/x64/assembler-x64-inl.h', | 450 '../../src/x64/assembler-x64-inl.h', |
| 449 '../../src/x64/assembler-x64.cc', | 451 '../../src/x64/assembler-x64.cc', |
| 450 '../../src/x64/assembler-x64.h', | 452 '../../src/x64/assembler-x64.h', |
| 451 '../../src/x64/builtins-x64.cc', | 453 '../../src/x64/builtins-x64.cc', |
| 452 '../../src/x64/codegen-x64.cc', | 454 '../../src/x64/codegen-x64.cc', |
| 453 '../../src/x64/codegen-x64.h', | 455 '../../src/x64/codegen-x64.h', |
| 454 '../../src/x64/cpu-x64.cc', | 456 '../../src/x64/cpu-x64.cc', |
| 455 '../../src/x64/debug-x64.cc', | 457 '../../src/x64/debug-x64.cc', |
| 456 '../../src/x64/disasm-x64.cc', | 458 '../../src/x64/disasm-x64.cc', |
| 459 '../../src/x64/fast-codegen-x64.cc', |
| 457 '../../src/x64/frames-x64.cc', | 460 '../../src/x64/frames-x64.cc', |
| 458 '../../src/x64/frames-x64.h', | 461 '../../src/x64/frames-x64.h', |
| 459 '../../src/x64/ic-x64.cc', | 462 '../../src/x64/ic-x64.cc', |
| 460 '../../src/x64/jump-target-x64.cc', | 463 '../../src/x64/jump-target-x64.cc', |
| 461 '../../src/x64/macro-assembler-x64.cc', | 464 '../../src/x64/macro-assembler-x64.cc', |
| 462 '../../src/x64/macro-assembler-x64.h', | 465 '../../src/x64/macro-assembler-x64.h', |
| 463 '../../src/x64/regexp-macro-assembler-x64.cc', | 466 '../../src/x64/regexp-macro-assembler-x64.cc', |
| 464 '../../src/x64/regexp-macro-assembler-x64.h', | 467 '../../src/x64/regexp-macro-assembler-x64.h', |
| 465 '../../src/x64/register-allocator-x64.cc', | 468 '../../src/x64/register-allocator-x64.cc', |
| 466 '../../src/x64/stub-cache-x64.cc', | 469 '../../src/x64/stub-cache-x64.cc', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 ], | 571 ], |
| 569 'conditions': [ | 572 'conditions': [ |
| 570 [ 'OS=="win"', { | 573 [ 'OS=="win"', { |
| 571 # This could be gotten by not setting chromium_code, if that's OK. | 574 # This could be gotten by not setting chromium_code, if that's OK. |
| 572 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 575 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 573 }], | 576 }], |
| 574 ], | 577 ], |
| 575 }, | 578 }, |
| 576 ], | 579 ], |
| 577 } | 580 } |
| OLD | NEW |