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

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

Issue 1504713014: Initial import of v8-native WASM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1456 }, { # else icu_use_data_file_flag !=1 1456 }, { # else icu_use_data_file_flag !=1
1457 'conditions': [ 1457 'conditions': [
1458 ['OS=="win"', { 1458 ['OS=="win"', {
1459 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], 1459 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
1460 }, { 1460 }, {
1461 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], 1461 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
1462 }], 1462 }],
1463 ], 1463 ],
1464 }], 1464 }],
1465 ['v8_wasm!=0', { 1465 ['v8_wasm!=0', {
1466 'dependencies': ['../../third_party/wasm/src/wasm/wasm.gyp:wasm'], 1466 'sources': [
1467 '../../src/compiler/wasm-compiler.cc',
1468 '../../src/compiler/wasm-compiler.h',
1469 '../../src/compiler/wasm-linkage.cc',
1470 '../../src/wasm/asm-wasm-builder.cc',
1471 '../../src/wasm/asm-wasm-builder.h',
1472 '../../src/wasm/ast-decoder.cc',
1473 '../../src/wasm/ast-decoder.h',
1474 '../../src/wasm/decoder.h',
1475 '../../src/wasm/encoder.cc',
1476 '../../src/wasm/encoder.h',
1477 » '../../src/wasm/module-decoder.cc',
Michael Starzinger 2015/12/11 09:15:14 nit: Stray tabs instead of whitespaces here.
titzer 2015/12/11 10:16:21 Done.
1478 » '../../src/wasm/module-decoder.h',
Michael Starzinger 2015/12/11 09:15:14 nit: And here.
titzer 2015/12/11 10:16:21 Done.
1479 '../../src/wasm/wasm-js.cc',
1480 '../../src/wasm/wasm-js.h',
1481 '../../src/wasm/wasm-macro-gen.h',
1482 '../../src/wasm/wasm-module.cc',
1483 '../../src/wasm/wasm-module.h',
1484 '../../src/wasm/wasm-opcodes.cc',
1485 '../../src/wasm/wasm-opcodes.h',
1486 '../../src/wasm/wasm-result.cc',
1487 '../../src/wasm/wasm-result.h',
1488 ],
1467 }], 1489 }],
1468 ], 1490 ],
1469 }, 1491 },
1470 { 1492 {
1471 'target_name': 'v8_libbase', 1493 'target_name': 'v8_libbase',
1472 'type': 'static_library', 1494 'type': 'static_library',
1473 'variables': { 1495 'variables': {
1474 'optimize': 'max', 1496 'optimize': 'max',
1475 }, 1497 },
1476 'include_dirs+': [ 1498 'include_dirs+': [
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 }], 2097 }],
2076 ['want_separate_host_toolset==1', { 2098 ['want_separate_host_toolset==1', {
2077 'toolsets': ['host'], 2099 'toolsets': ['host'],
2078 }, { 2100 }, {
2079 'toolsets': ['target'], 2101 'toolsets': ['target'],
2080 }], 2102 }],
2081 ], 2103 ],
2082 }, 2104 },
2083 ], 2105 ],
2084 } 2106 }
OLDNEW
« test/unittests/unittests.gyp ('K') | « test/unittests/wasm/wasm-macro-gen-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698