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

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

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Contribution of PowerPC port - rebase and address initial set of comments Created 5 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 | « test/unittests/unittests.gyp ('k') | tools/run-deopt-fuzzer.py » ('j') | 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 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1187 ], 1187 ],
1188 }], 1188 }],
1189 ['v8_target_arch=="x64"', { 1189 ['v8_target_arch=="x64"', {
1190 'sources': [ 1190 'sources': [
1191 '../../src/compiler/x64/code-generator-x64.cc', 1191 '../../src/compiler/x64/code-generator-x64.cc',
1192 '../../src/compiler/x64/instruction-codes-x64.h', 1192 '../../src/compiler/x64/instruction-codes-x64.h',
1193 '../../src/compiler/x64/instruction-selector-x64.cc', 1193 '../../src/compiler/x64/instruction-selector-x64.cc',
1194 '../../src/compiler/x64/linkage-x64.cc', 1194 '../../src/compiler/x64/linkage-x64.cc',
1195 ], 1195 ],
1196 }], 1196 }],
1197 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
1198 'sources': [ ### gcmole(arch:ppc) ###
1199 '../../src/ppc/assembler-ppc-inl.h',
1200 '../../src/ppc/assembler-ppc.cc',
1201 '../../src/ppc/assembler-ppc.h',
1202 '../../src/ppc/builtins-ppc.cc',
1203 '../../src/ppc/code-stubs-ppc.cc',
1204 '../../src/ppc/code-stubs-ppc.h',
1205 '../../src/ppc/codegen-ppc.cc',
1206 '../../src/ppc/codegen-ppc.h',
1207 '../../src/ppc/constants-ppc.h',
1208 '../../src/ppc/constants-ppc.cc',
1209 '../../src/ppc/cpu-ppc.cc',
1210 '../../src/ppc/debug-ppc.cc',
1211 '../../src/ppc/deoptimizer-ppc.cc',
1212 '../../src/ppc/disasm-ppc.cc',
1213 '../../src/ppc/frames-ppc.cc',
1214 '../../src/ppc/frames-ppc.h',
1215 '../../src/ppc/full-codegen-ppc.cc',
1216 '../../src/ppc/interface-descriptors-ppc.cc',
1217 '../../src/ppc/interface-descriptors-ppc.h',
1218 '../../src/ppc/lithium-ppc.cc',
1219 '../../src/ppc/lithium-ppc.h',
1220 '../../src/ppc/lithium-codegen-ppc.cc',
1221 '../../src/ppc/lithium-codegen-ppc.h',
1222 '../../src/ppc/lithium-gap-resolver-ppc.cc',
1223 '../../src/ppc/lithium-gap-resolver-ppc.h',
1224 '../../src/ppc/macro-assembler-ppc.cc',
1225 '../../src/ppc/macro-assembler-ppc.h',
1226 '../../src/ppc/regexp-macro-assembler-ppc.cc',
1227 '../../src/ppc/regexp-macro-assembler-ppc.h',
1228 '../../src/ppc/simulator-ppc.cc',
1229 '../../src/compiler/ppc/code-generator-ppc.cc',
1230 '../../src/compiler/ppc/instruction-codes-ppc.h',
1231 '../../src/compiler/ppc/instruction-selector-ppc.cc',
1232 '../../src/compiler/ppc/linkage-ppc.cc',
1233 '../../src/ic/ppc/access-compiler-ppc.cc',
1234 '../../src/ic/ppc/handler-compiler-ppc.cc',
1235 '../../src/ic/ppc/ic-ppc.cc',
1236 '../../src/ic/ppc/ic-compiler-ppc.cc',
1237 '../../src/ic/ppc/stub-cache-ppc.cc',
1238 ],
1239 }],
1197 ['OS=="win"', { 1240 ['OS=="win"', {
1198 'variables': { 1241 'variables': {
1199 'gyp_generators': '<!(echo $GYP_GENERATORS)', 1242 'gyp_generators': '<!(echo $GYP_GENERATORS)',
1200 }, 1243 },
1201 'msvs_disabled_warnings': [4351, 4355, 4800], 1244 'msvs_disabled_warnings': [4351, 4355, 4800],
1202 }], 1245 }],
1203 ['component=="shared_library"', { 1246 ['component=="shared_library"', {
1204 'defines': [ 1247 'defines': [
1205 'BUILDING_V8_SHARED', 1248 'BUILDING_V8_SHARED',
1206 'V8_SHARED', 1249 'V8_SHARED',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 'include_dirs+': [ 1292 'include_dirs+': [
1250 '../..', 1293 '../..',
1251 ], 1294 ],
1252 'sources': [ 1295 'sources': [
1253 '../../src/base/atomicops.h', 1296 '../../src/base/atomicops.h',
1254 '../../src/base/atomicops_internals_arm64_gcc.h', 1297 '../../src/base/atomicops_internals_arm64_gcc.h',
1255 '../../src/base/atomicops_internals_arm_gcc.h', 1298 '../../src/base/atomicops_internals_arm_gcc.h',
1256 '../../src/base/atomicops_internals_atomicword_compat.h', 1299 '../../src/base/atomicops_internals_atomicword_compat.h',
1257 '../../src/base/atomicops_internals_mac.h', 1300 '../../src/base/atomicops_internals_mac.h',
1258 '../../src/base/atomicops_internals_mips_gcc.h', 1301 '../../src/base/atomicops_internals_mips_gcc.h',
1302 '../../src/base/atomicops_internals_ppc_gcc.h',
1259 '../../src/base/atomicops_internals_tsan.h', 1303 '../../src/base/atomicops_internals_tsan.h',
1260 '../../src/base/atomicops_internals_x86_gcc.cc', 1304 '../../src/base/atomicops_internals_x86_gcc.cc',
1261 '../../src/base/atomicops_internals_x86_gcc.h', 1305 '../../src/base/atomicops_internals_x86_gcc.h',
1262 '../../src/base/atomicops_internals_x86_msvc.h', 1306 '../../src/base/atomicops_internals_x86_msvc.h',
1263 '../../src/base/bits.cc', 1307 '../../src/base/bits.cc',
1264 '../../src/base/bits.h', 1308 '../../src/base/bits.h',
1265 '../../src/base/build_config.h', 1309 '../../src/base/build_config.h',
1266 '../../src/base/compiler-specific.h', 1310 '../../src/base/compiler-specific.h',
1267 '../../src/base/cpu.cc', 1311 '../../src/base/cpu.cc',
1268 '../../src/base/cpu.h', 1312 '../../src/base/cpu.h',
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 }], 1798 }],
1755 ['want_separate_host_toolset==1', { 1799 ['want_separate_host_toolset==1', {
1756 'toolsets': ['host'], 1800 'toolsets': ['host'],
1757 }, { 1801 }, {
1758 'toolsets': ['target'], 1802 'toolsets': ['target'],
1759 }], 1803 }],
1760 ], 1804 ],
1761 }, 1805 },
1762 ], 1806 ],
1763 } 1807 }
OLDNEW
« no previous file with comments | « test/unittests/unittests.gyp ('k') | tools/run-deopt-fuzzer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698