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

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

Issue 1585813002: S390: Makefile + Build Toolchain Updates (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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 | « src/base/build_config.h ('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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 ], 1413 ],
1414 }], 1414 }],
1415 ['v8_target_arch=="x64"', { 1415 ['v8_target_arch=="x64"', {
1416 'sources': [ 1416 'sources': [
1417 '../../src/compiler/x64/code-generator-x64.cc', 1417 '../../src/compiler/x64/code-generator-x64.cc',
1418 '../../src/compiler/x64/instruction-codes-x64.h', 1418 '../../src/compiler/x64/instruction-codes-x64.h',
1419 '../../src/compiler/x64/instruction-scheduler-x64.cc', 1419 '../../src/compiler/x64/instruction-scheduler-x64.cc',
1420 '../../src/compiler/x64/instruction-selector-x64.cc', 1420 '../../src/compiler/x64/instruction-selector-x64.cc',
1421 ], 1421 ],
1422 }], 1422 }],
1423 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', {
1424 'sources': [ ### gcmole(arch:s390) ###
1425 '../../src/compiler/s390/code-generator-s390.cc',
jochen (gone - plz use gerrit) 2016/01/14 14:04:40 please don't add files here yet without them being
1426 '../../src/compiler/s390/instruction-codes-s390.h',
1427 '../../src/compiler/s390/instruction-scheduler-s390.cc',
1428 '../../src/compiler/s390/instruction-selector-s390.cc',
1429 '../../src/crankshaft/s390/lithium-s390.cc',
1430 '../../src/crankshaft/s390/lithium-s390.h',
1431 '../../src/crankshaft/s390/lithium-codegen-s390.cc',
1432 '../../src/crankshaft/s390/lithium-codegen-s390.h',
1433 '../../src/crankshaft/s390/lithium-gap-resolver-s390.cc',
1434 '../../src/crankshaft/s390/lithium-gap-resolver-s390.h',
1435 '../../src/debug/s390/debug-s390.cc',
1436 '../../src/full-codegen/s390/full-codegen-s390.cc',
1437 '../../src/ic/s390/access-compiler-s390.cc',
1438 '../../src/ic/s390/handler-compiler-s390.cc',
1439 '../../src/ic/s390/ic-s390.cc',
1440 '../../src/ic/s390/ic-compiler-s390.cc',
1441 '../../src/ic/s390/stub-cache-s390.cc',
1442 '../../src/s390/assembler-s390-inl.h',
1443 '../../src/s390/assembler-s390.cc',
1444 '../../src/s390/assembler-s390.h',
1445 '../../src/s390/builtins-s390.cc',
1446 '../../src/s390/code-stubs-s390.cc',
1447 '../../src/s390/code-stubs-s390.h',
1448 '../../src/s390/codegen-s390.cc',
1449 '../../src/s390/codegen-s390.h',
1450 '../../src/s390/constants-s390.h',
1451 '../../src/s390/constants-s390.cc',
1452 '../../src/s390/cpu-s390.cc',
1453 '../../src/s390/deoptimizer-s390.cc',
1454 '../../src/s390/disasm-s390.cc',
1455 '../../src/s390/frames-s390.cc',
1456 '../../src/s390/frames-s390.h',
1457 '../../src/s390/interface-descriptors-s390.cc',
1458 '../../src/s390/interface-descriptors-s390.h',
1459 '../../src/s390/macro-assembler-s390.cc',
1460 '../../src/s390/macro-assembler-s390.h',
1461 '../../src/s390/simulator-s390.cc',
1462 '../../src/s390/simulator-s390.h',
1463 '../../src/regexp/s390/regexp-macro-assembler-s390.cc',
1464 '../../src/regexp/s390/regexp-macro-assembler-s390.h',
1465 ],
1466 }],
1423 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { 1467 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
1424 'sources': [ ### gcmole(arch:ppc) ### 1468 'sources': [ ### gcmole(arch:ppc) ###
1425 '../../src/compiler/ppc/code-generator-ppc.cc', 1469 '../../src/compiler/ppc/code-generator-ppc.cc',
1426 '../../src/compiler/ppc/instruction-codes-ppc.h', 1470 '../../src/compiler/ppc/instruction-codes-ppc.h',
1427 '../../src/compiler/ppc/instruction-scheduler-ppc.cc', 1471 '../../src/compiler/ppc/instruction-scheduler-ppc.cc',
1428 '../../src/compiler/ppc/instruction-selector-ppc.cc', 1472 '../../src/compiler/ppc/instruction-selector-ppc.cc',
1429 '../../src/crankshaft/ppc/lithium-ppc.cc', 1473 '../../src/crankshaft/ppc/lithium-ppc.cc',
1430 '../../src/crankshaft/ppc/lithium-ppc.h', 1474 '../../src/crankshaft/ppc/lithium-ppc.h',
1431 '../../src/crankshaft/ppc/lithium-codegen-ppc.cc', 1475 '../../src/crankshaft/ppc/lithium-codegen-ppc.cc',
1432 '../../src/crankshaft/ppc/lithium-codegen-ppc.h', 1476 '../../src/crankshaft/ppc/lithium-codegen-ppc.h',
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
2123 }], 2167 }],
2124 ['want_separate_host_toolset==1', { 2168 ['want_separate_host_toolset==1', {
2125 'toolsets': ['host'], 2169 'toolsets': ['host'],
2126 }, { 2170 }, {
2127 'toolsets': ['target'], 2171 'toolsets': ['target'],
2128 }], 2172 }],
2129 ], 2173 ],
2130 }, 2174 },
2131 ], 2175 ],
2132 } 2176 }
OLDNEW
« no previous file with comments | « src/base/build_config.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698