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

Side by Side Diff: src/v8.gyp

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 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/type-info.h ('k') | src/value-serializer.h » ('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 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 'wasm/wasm-js.h', 1259 'wasm/wasm-js.h',
1260 'wasm/wasm-macro-gen.h', 1260 'wasm/wasm-macro-gen.h',
1261 'wasm/wasm-module.cc', 1261 'wasm/wasm-module.cc',
1262 'wasm/wasm-module.h', 1262 'wasm/wasm-module.h',
1263 'wasm/wasm-interpreter.cc', 1263 'wasm/wasm-interpreter.cc',
1264 'wasm/wasm-interpreter.h', 1264 'wasm/wasm-interpreter.h',
1265 'wasm/wasm-opcodes.cc', 1265 'wasm/wasm-opcodes.cc',
1266 'wasm/wasm-opcodes.h', 1266 'wasm/wasm-opcodes.h',
1267 'wasm/wasm-result.cc', 1267 'wasm/wasm-result.cc',
1268 'wasm/wasm-result.h', 1268 'wasm/wasm-result.h',
1269 'zone.cc', 1269 'zone/accounting-allocator.cc',
1270 'zone.h', 1270 'zone/accounting-allocator.h',
1271 'zone-allocator.h', 1271 'zone/zone-segment.h',
1272 'zone-containers.h', 1272 'zone/zone.cc',
1273 'zone/zone.h',
1274 'zone/zone-allocator.h',
1275 'zone/zone-containers.h',
1273 ], 1276 ],
1274 'conditions': [ 1277 'conditions': [
1275 ['want_separate_host_toolset==1', { 1278 ['want_separate_host_toolset==1', {
1276 'toolsets': ['host', 'target'], 1279 'toolsets': ['host', 'target'],
1277 }, { 1280 }, {
1278 'toolsets': ['target'], 1281 'toolsets': ['target'],
1279 }], 1282 }],
1280 ['want_separate_host_toolset_mkpeephole==1', { 1283 ['want_separate_host_toolset_mkpeephole==1', {
1281 'dependencies': ['mkpeephole#host'], 1284 'dependencies': ['mkpeephole#host'],
1282 }, { 1285 }, {
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1768 { 1771 {
1769 'target_name': 'v8_libbase', 1772 'target_name': 'v8_libbase',
1770 'type': 'static_library', 1773 'type': 'static_library',
1771 'variables': { 1774 'variables': {
1772 'optimize': 'max', 1775 'optimize': 'max',
1773 }, 1776 },
1774 'include_dirs+': [ 1777 'include_dirs+': [
1775 '..', 1778 '..',
1776 ], 1779 ],
1777 'sources': [ 1780 'sources': [
1778 'base/accounting-allocator.cc',
1779 'base/accounting-allocator.h',
1780 'base/adapters.h', 1781 'base/adapters.h',
1781 'base/atomic-utils.h', 1782 'base/atomic-utils.h',
1782 'base/atomicops.h', 1783 'base/atomicops.h',
1783 'base/atomicops_internals_arm64_gcc.h', 1784 'base/atomicops_internals_arm64_gcc.h',
1784 'base/atomicops_internals_arm_gcc.h', 1785 'base/atomicops_internals_arm_gcc.h',
1785 'base/atomicops_internals_atomicword_compat.h', 1786 'base/atomicops_internals_atomicword_compat.h',
1786 'base/atomicops_internals_mac.h', 1787 'base/atomicops_internals_mac.h',
1787 'base/atomicops_internals_mips_gcc.h', 1788 'base/atomicops_internals_mips_gcc.h',
1788 'base/atomicops_internals_mips64_gcc.h', 1789 'base/atomicops_internals_mips64_gcc.h',
1789 'base/atomicops_internals_ppc_gcc.h', 1790 'base/atomicops_internals_ppc_gcc.h',
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
2446 'conditions': [ 2447 'conditions': [
2447 ['want_separate_host_toolset_mkpeephole==1', { 2448 ['want_separate_host_toolset_mkpeephole==1', {
2448 'toolsets': ['host'], 2449 'toolsets': ['host'],
2449 }, { 2450 }, {
2450 'toolsets': ['target'], 2451 'toolsets': ['target'],
2451 }], 2452 }],
2452 ], 2453 ],
2453 }, 2454 },
2454 ], 2455 ],
2455 } 2456 }
OLDNEW
« no previous file with comments | « src/type-info.h ('k') | src/value-serializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698