| 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 22 matching lines...) Expand all Loading... |
| 33 'target_arch%': 'ia32', | 33 'target_arch%': 'ia32', |
| 34 'v8_use_snapshot%': 'true', | 34 'v8_use_snapshot%': 'true', |
| 35 }, | 35 }, |
| 36 'includes': [ | 36 'includes': [ |
| 37 '../../../build/common.gypi', | 37 '../../../build/common.gypi', |
| 38 ], | 38 ], |
| 39 'target_defaults': { | 39 'target_defaults': { |
| 40 'defines': [ | 40 'defines': [ |
| 41 'ENABLE_LOGGING_AND_PROFILING', | 41 'ENABLE_LOGGING_AND_PROFILING', |
| 42 ], | 42 ], |
| 43 'conditions': [ | 43 'conditions': [ |
| 44 ['target_arch=="arm"', { | 44 ['target_arch=="arm"', { |
| 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 ], |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 '../../src/arguments.h', | 209 '../../src/arguments.h', |
| 210 '../../src/assembler.cc', | 210 '../../src/assembler.cc', |
| 211 '../../src/assembler.h', | 211 '../../src/assembler.h', |
| 212 '../../src/ast.cc', | 212 '../../src/ast.cc', |
| 213 '../../src/ast.h', | 213 '../../src/ast.h', |
| 214 '../../src/bootstrapper.cc', | 214 '../../src/bootstrapper.cc', |
| 215 '../../src/bootstrapper.h', | 215 '../../src/bootstrapper.h', |
| 216 '../../src/builtins.cc', | 216 '../../src/builtins.cc', |
| 217 '../../src/builtins.h', | 217 '../../src/builtins.h', |
| 218 '../../src/bytecodes-irregexp.h', | 218 '../../src/bytecodes-irregexp.h', |
| 219 '../../src/cfg.cc', |
| 220 '../../src/cfg.h', |
| 219 '../../src/char-predicates-inl.h', | 221 '../../src/char-predicates-inl.h', |
| 220 '../../src/char-predicates.h', | 222 '../../src/char-predicates.h', |
| 221 '../../src/checks.cc', | 223 '../../src/checks.cc', |
| 222 '../../src/checks.h', | 224 '../../src/checks.h', |
| 223 '../../src/code-stubs.cc', | 225 '../../src/code-stubs.cc', |
| 224 '../../src/code-stubs.h', | 226 '../../src/code-stubs.h', |
| 225 '../../src/code.h', | 227 '../../src/code.h', |
| 226 '../../src/codegen-inl.h', | 228 '../../src/codegen-inl.h', |
| 227 '../../src/codegen.cc', | 229 '../../src/codegen.cc', |
| 228 '../../src/codegen.h', | 230 '../../src/codegen.h', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'conditions': [ | 378 'conditions': [ |
| 377 ['target_arch=="arm"', { | 379 ['target_arch=="arm"', { |
| 378 'include_dirs+': [ | 380 'include_dirs+': [ |
| 379 '../../src/arm', | 381 '../../src/arm', |
| 380 ], | 382 ], |
| 381 'sources': [ | 383 'sources': [ |
| 382 '../../src/arm/assembler-arm-inl.h', | 384 '../../src/arm/assembler-arm-inl.h', |
| 383 '../../src/arm/assembler-arm.cc', | 385 '../../src/arm/assembler-arm.cc', |
| 384 '../../src/arm/assembler-arm.h', | 386 '../../src/arm/assembler-arm.h', |
| 385 '../../src/arm/builtins-arm.cc', | 387 '../../src/arm/builtins-arm.cc', |
| 388 '../../src/arm/cfg-arm.cc', |
| 386 '../../src/arm/codegen-arm.cc', | 389 '../../src/arm/codegen-arm.cc', |
| 387 '../../src/arm/codegen-arm.h', | 390 '../../src/arm/codegen-arm.h', |
| 388 '../../src/arm/constants-arm.h', | 391 '../../src/arm/constants-arm.h', |
| 389 '../../src/arm/cpu-arm.cc', | 392 '../../src/arm/cpu-arm.cc', |
| 390 '../../src/arm/debug-arm.cc', | 393 '../../src/arm/debug-arm.cc', |
| 391 '../../src/arm/disasm-arm.cc', | 394 '../../src/arm/disasm-arm.cc', |
| 392 '../../src/arm/frames-arm.cc', | 395 '../../src/arm/frames-arm.cc', |
| 393 '../../src/arm/frames-arm.h', | 396 '../../src/arm/frames-arm.h', |
| 394 '../../src/arm/ic-arm.cc', | 397 '../../src/arm/ic-arm.cc', |
| 395 '../../src/arm/jump-target-arm.cc', | 398 '../../src/arm/jump-target-arm.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 406 }], | 409 }], |
| 407 ['target_arch=="ia32"', { | 410 ['target_arch=="ia32"', { |
| 408 'include_dirs+': [ | 411 'include_dirs+': [ |
| 409 '../../src/ia32', | 412 '../../src/ia32', |
| 410 ], | 413 ], |
| 411 'sources': [ | 414 'sources': [ |
| 412 '../../src/ia32/assembler-ia32-inl.h', | 415 '../../src/ia32/assembler-ia32-inl.h', |
| 413 '../../src/ia32/assembler-ia32.cc', | 416 '../../src/ia32/assembler-ia32.cc', |
| 414 '../../src/ia32/assembler-ia32.h', | 417 '../../src/ia32/assembler-ia32.h', |
| 415 '../../src/ia32/builtins-ia32.cc', | 418 '../../src/ia32/builtins-ia32.cc', |
| 419 '../../src/ia32/cfg-ia32.cc', |
| 416 '../../src/ia32/codegen-ia32.cc', | 420 '../../src/ia32/codegen-ia32.cc', |
| 417 '../../src/ia32/codegen-ia32.h', | 421 '../../src/ia32/codegen-ia32.h', |
| 418 '../../src/ia32/cpu-ia32.cc', | 422 '../../src/ia32/cpu-ia32.cc', |
| 419 '../../src/ia32/debug-ia32.cc', | 423 '../../src/ia32/debug-ia32.cc', |
| 420 '../../src/ia32/disasm-ia32.cc', | 424 '../../src/ia32/disasm-ia32.cc', |
| 421 '../../src/ia32/frames-ia32.cc', | 425 '../../src/ia32/frames-ia32.cc', |
| 422 '../../src/ia32/frames-ia32.h', | 426 '../../src/ia32/frames-ia32.h', |
| 423 '../../src/ia32/ic-ia32.cc', | 427 '../../src/ia32/ic-ia32.cc', |
| 424 '../../src/ia32/jump-target-ia32.cc', | 428 '../../src/ia32/jump-target-ia32.cc', |
| 425 '../../src/ia32/macro-assembler-ia32.cc', | 429 '../../src/ia32/macro-assembler-ia32.cc', |
| 426 '../../src/ia32/macro-assembler-ia32.h', | 430 '../../src/ia32/macro-assembler-ia32.h', |
| 427 '../../src/ia32/regexp-macro-assembler-ia32.cc', | 431 '../../src/ia32/regexp-macro-assembler-ia32.cc', |
| 428 '../../src/ia32/regexp-macro-assembler-ia32.h', | 432 '../../src/ia32/regexp-macro-assembler-ia32.h', |
| 429 '../../src/ia32/register-allocator-ia32.cc', | 433 '../../src/ia32/register-allocator-ia32.cc', |
| 430 '../../src/ia32/stub-cache-ia32.cc', | 434 '../../src/ia32/stub-cache-ia32.cc', |
| 431 '../../src/ia32/virtual-frame-ia32.cc', | 435 '../../src/ia32/virtual-frame-ia32.cc', |
| 432 '../../src/ia32/virtual-frame-ia32.h', | 436 '../../src/ia32/virtual-frame-ia32.h', |
| 433 ], | 437 ], |
| 434 }], | 438 }], |
| 435 ['target_arch=="x64"', { | 439 ['target_arch=="x64"', { |
| 436 'include_dirs+': [ | 440 'include_dirs+': [ |
| 437 '../../src/x64', | 441 '../../src/x64', |
| 438 ], | 442 ], |
| 439 'sources': [ | 443 'sources': [ |
| 440 '../../src/x64/assembler-x64-inl.h', | 444 '../../src/x64/assembler-x64-inl.h', |
| 441 '../../src/x64/assembler-x64.cc', | 445 '../../src/x64/assembler-x64.cc', |
| 442 '../../src/x64/assembler-x64.h', | 446 '../../src/x64/assembler-x64.h', |
| 443 '../../src/x64/builtins-x64.cc', | 447 '../../src/x64/builtins-x64.cc', |
| 448 '../../src/x64/cfg-x64.cc', |
| 444 '../../src/x64/codegen-x64.cc', | 449 '../../src/x64/codegen-x64.cc', |
| 445 '../../src/x64/codegen-x64.h', | 450 '../../src/x64/codegen-x64.h', |
| 446 '../../src/x64/cpu-x64.cc', | 451 '../../src/x64/cpu-x64.cc', |
| 447 '../../src/x64/debug-x64.cc', | 452 '../../src/x64/debug-x64.cc', |
| 448 '../../src/x64/disasm-x64.cc', | 453 '../../src/x64/disasm-x64.cc', |
| 449 '../../src/x64/frames-x64.cc', | 454 '../../src/x64/frames-x64.cc', |
| 450 '../../src/x64/frames-x64.h', | 455 '../../src/x64/frames-x64.h', |
| 451 '../../src/x64/ic-x64.cc', | 456 '../../src/x64/ic-x64.cc', |
| 452 '../../src/x64/jump-target-x64.cc', | 457 '../../src/x64/jump-target-x64.cc', |
| 453 '../../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 Loading... |
| 560 ], | 565 ], |
| 561 'conditions': [ | 566 'conditions': [ |
| 562 [ 'OS=="win"', { | 567 [ 'OS=="win"', { |
| 563 # 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. |
| 564 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 569 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 565 }], | 570 }], |
| 566 ], | 571 ], |
| 567 }, | 572 }, |
| 568 ], | 573 ], |
| 569 } | 574 } |
| OLD | NEW |