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

Side by Side Diff: src/v8.gyp

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations 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
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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 'wasm/wasm-js.h', 1265 'wasm/wasm-js.h',
1266 'wasm/wasm-macro-gen.h', 1266 'wasm/wasm-macro-gen.h',
1267 'wasm/wasm-module.cc', 1267 'wasm/wasm-module.cc',
1268 'wasm/wasm-module.h', 1268 'wasm/wasm-module.h',
1269 'wasm/wasm-interpreter.cc', 1269 'wasm/wasm-interpreter.cc',
1270 'wasm/wasm-interpreter.h', 1270 'wasm/wasm-interpreter.h',
1271 'wasm/wasm-opcodes.cc', 1271 'wasm/wasm-opcodes.cc',
1272 'wasm/wasm-opcodes.h', 1272 'wasm/wasm-opcodes.h',
1273 'wasm/wasm-result.cc', 1273 'wasm/wasm-result.cc',
1274 'wasm/wasm-result.h', 1274 'wasm/wasm-result.h',
1275 'zone.cc', 1275 'zone/accounting-allocator.cc',
1276 'zone.h', 1276 'zone/accounting-allocator.h',
1277 'zone-allocator.h', 1277 'zone/zone.cc',
1278 'zone-containers.h', 1278 'zone/zone.h',
1279 'zone/zone-allocator.h',
1280 'zone/zone-containers.h',
1279 ], 1281 ],
1280 'conditions': [ 1282 'conditions': [
1281 ['want_separate_host_toolset==1', { 1283 ['want_separate_host_toolset==1', {
1282 'toolsets': ['host', 'target'], 1284 'toolsets': ['host', 'target'],
1283 }, { 1285 }, {
1284 'toolsets': ['target'], 1286 'toolsets': ['target'],
1285 }], 1287 }],
1286 ['want_separate_host_toolset_mkpeephole==1', { 1288 ['want_separate_host_toolset_mkpeephole==1', {
1287 'dependencies': ['mkpeephole#host'], 1289 'dependencies': ['mkpeephole#host'],
1288 }, { 1290 }, {
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1771 { 1773 {
1772 'target_name': 'v8_libbase', 1774 'target_name': 'v8_libbase',
1773 'type': 'static_library', 1775 'type': 'static_library',
1774 'variables': { 1776 'variables': {
1775 'optimize': 'max', 1777 'optimize': 'max',
1776 }, 1778 },
1777 'include_dirs+': [ 1779 'include_dirs+': [
1778 '..', 1780 '..',
1779 ], 1781 ],
1780 'sources': [ 1782 'sources': [
1781 'base/accounting-allocator.cc',
1782 'base/accounting-allocator.h',
1783 'base/adapters.h', 1783 'base/adapters.h',
1784 'base/atomic-utils.h', 1784 'base/atomic-utils.h',
1785 'base/atomicops.h', 1785 'base/atomicops.h',
1786 'base/atomicops_internals_arm64_gcc.h', 1786 'base/atomicops_internals_arm64_gcc.h',
1787 'base/atomicops_internals_arm_gcc.h', 1787 'base/atomicops_internals_arm_gcc.h',
1788 'base/atomicops_internals_atomicword_compat.h', 1788 'base/atomicops_internals_atomicword_compat.h',
1789 'base/atomicops_internals_mac.h', 1789 'base/atomicops_internals_mac.h',
1790 'base/atomicops_internals_mips_gcc.h', 1790 'base/atomicops_internals_mips_gcc.h',
1791 'base/atomicops_internals_mips64_gcc.h', 1791 'base/atomicops_internals_mips64_gcc.h',
1792 'base/atomicops_internals_ppc_gcc.h', 1792 'base/atomicops_internals_ppc_gcc.h',
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
2448 'conditions': [ 2448 'conditions': [
2449 ['want_separate_host_toolset_mkpeephole==1', { 2449 ['want_separate_host_toolset_mkpeephole==1', {
2450 'toolsets': ['host'], 2450 'toolsets': ['host'],
2451 }, { 2451 }, {
2452 'toolsets': ['target'], 2452 'toolsets': ['target'],
2453 }], 2453 }],
2454 ], 2454 ],
2455 }, 2455 },
2456 ], 2456 ],
2457 } 2457 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698