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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 'sources!': [ | 1010 'sources!': [ |
1011 '../../src/i18n.cc', | 1011 '../../src/i18n.cc', |
1012 '../../src/i18n.h', | 1012 '../../src/i18n.h', |
1013 ], | 1013 ], |
1014 }], | 1014 }], |
1015 ['OS=="win" and v8_enable_i18n_support==1', { | 1015 ['OS=="win" and v8_enable_i18n_support==1', { |
1016 'dependencies': [ | 1016 'dependencies': [ |
1017 '<(icu_gyp_path):icudata', | 1017 '<(icu_gyp_path):icudata', |
1018 ], | 1018 ], |
1019 }], | 1019 }], |
1020 ['v8_use_default_platform==0', { | |
1021 'sources!': [ | |
1022 '../../src/default-platform.cc', | |
1023 '../../src/default-platform.h', | |
1024 ], | |
1025 }], | |
1026 ['icu_use_data_file_flag==1', { | 1020 ['icu_use_data_file_flag==1', { |
1027 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], | 1021 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], |
1028 }, { # else icu_use_data_file_flag !=1 | 1022 }, { # else icu_use_data_file_flag !=1 |
1029 'conditions': [ | 1023 'conditions': [ |
1030 ['OS=="win"', { | 1024 ['OS=="win"', { |
1031 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], | 1025 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], |
1032 }, { | 1026 }, { |
1033 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], | 1027 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], |
1034 }], | 1028 }], |
1035 ], | 1029 ], |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1182 }], | 1176 }], |
1183 ['v8_compress_startup_data=="bz2"', { | 1177 ['v8_compress_startup_data=="bz2"', { |
1184 'libraries': [ | 1178 'libraries': [ |
1185 '-lbz2', | 1179 '-lbz2', |
1186 ] | 1180 ] |
1187 }], | 1181 }], |
1188 ], | 1182 ], |
1189 }, | 1183 }, |
1190 ], | 1184 ], |
1191 } | 1185 } |
OLD | NEW |