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 2013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2024 'experimental_library_files': [ | 2024 'experimental_library_files': [ |
2025 'js/macros.py', | 2025 'js/macros.py', |
2026 'messages.h', | 2026 'messages.h', |
2027 'js/harmony-atomics.js', | 2027 'js/harmony-atomics.js', |
2028 'js/harmony-regexp-exec.js', | 2028 'js/harmony-regexp-exec.js', |
2029 'js/harmony-sharedarraybuffer.js', | 2029 'js/harmony-sharedarraybuffer.js', |
2030 'js/harmony-simd.js', | 2030 'js/harmony-simd.js', |
2031 'js/harmony-species.js', | 2031 'js/harmony-species.js', |
2032 'js/harmony-unicode-regexps.js', | 2032 'js/harmony-unicode-regexps.js', |
2033 'js/harmony-string-padding.js', | 2033 'js/harmony-string-padding.js', |
2034 'js/intl-extra.js', | |
2035 'js/promise-extra.js', | 2034 'js/promise-extra.js', |
2036 ], | 2035 ], |
2037 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', | 2036 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', |
2038 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries
-experimental.bin', | 2037 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries
-experimental.bin', |
2039 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra
s.bin', | 2038 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra
s.bin', |
2040 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li
braries-experimental-extras.bin', | 2039 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li
braries-experimental-extras.bin', |
2041 'conditions': [ | 2040 'conditions': [ |
2042 ['v8_enable_i18n_support==1', { | 2041 ['v8_enable_i18n_support==1', { |
2043 'library_files': ['js/i18n.js'], | 2042 'library_files': ['js/i18n.js'], |
2044 'experimental_library_files': ['js/icu-case-mapping.js'], | 2043 'experimental_library_files': [ |
| 2044 'js/icu-case-mapping.js', |
| 2045 'js/intl-extra.js', |
| 2046 ], |
2045 }], | 2047 }], |
2046 ], | 2048 ], |
2047 }, | 2049 }, |
2048 'actions': [ | 2050 'actions': [ |
2049 { | 2051 { |
2050 'action_name': 'js2c', | 2052 'action_name': 'js2c', |
2051 'inputs': [ | 2053 'inputs': [ |
2052 '../tools/js2c.py', | 2054 '../tools/js2c.py', |
2053 '<@(library_files)', | 2055 '<@(library_files)', |
2054 ], | 2056 ], |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2225 }], | 2227 }], |
2226 ['want_separate_host_toolset==1', { | 2228 ['want_separate_host_toolset==1', { |
2227 'toolsets': ['host'], | 2229 'toolsets': ['host'], |
2228 }, { | 2230 }, { |
2229 'toolsets': ['target'], | 2231 'toolsets': ['target'], |
2230 }], | 2232 }], |
2231 ], | 2233 ], |
2232 }, | 2234 }, |
2233 ], | 2235 ], |
2234 } | 2236 } |
OLD | NEW |