OLD | NEW |
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 Loading... |
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', |
| 1478 '../../src/wasm/module-decoder.h', |
| 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 Loading... |
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 } |
OLD | NEW |