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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1389 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], | 1389 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], |
1390 }, { # else icu_use_data_file_flag !=1 | 1390 }, { # else icu_use_data_file_flag !=1 |
1391 'conditions': [ | 1391 'conditions': [ |
1392 ['OS=="win"', { | 1392 ['OS=="win"', { |
1393 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], | 1393 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], |
1394 }, { | 1394 }, { |
1395 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], | 1395 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], |
1396 }], | 1396 }], |
1397 ], | 1397 ], |
1398 }], | 1398 }], |
| 1399 ['v8_wasm!=0', { |
| 1400 'dependencies': ['../../third_party/wasm/src/wasm/wasm.gyp:wasm'], |
| 1401 }], |
1399 ], | 1402 ], |
1400 }, | 1403 }, |
1401 { | 1404 { |
1402 'target_name': 'v8_libbase', | 1405 'target_name': 'v8_libbase', |
1403 'type': 'static_library', | 1406 'type': 'static_library', |
1404 'variables': { | 1407 'variables': { |
1405 'optimize': 'max', | 1408 'optimize': 'max', |
1406 }, | 1409 }, |
1407 'include_dirs+': [ | 1410 'include_dirs+': [ |
1408 '../..', | 1411 '../..', |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1984 }], | 1987 }], |
1985 ['want_separate_host_toolset==1', { | 1988 ['want_separate_host_toolset==1', { |
1986 'toolsets': ['host'], | 1989 'toolsets': ['host'], |
1987 }, { | 1990 }, { |
1988 'toolsets': ['target'], | 1991 'toolsets': ['target'], |
1989 }], | 1992 }], |
1990 ], | 1993 ], |
1991 }, | 1994 }, |
1992 ], | 1995 ], |
1993 } | 1996 } |
OLD | NEW |