| 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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 'V8_SHARED', | 848 'V8_SHARED', |
| 849 ], | 849 ], |
| 850 }], | 850 }], |
| 851 ['v8_postmortem_support=="true"', { | 851 ['v8_postmortem_support=="true"', { |
| 852 'sources': [ | 852 'sources': [ |
| 853 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 853 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
| 854 ] | 854 ] |
| 855 }], | 855 }], |
| 856 ['v8_enable_i18n_support==1', { | 856 ['v8_enable_i18n_support==1', { |
| 857 'dependencies': [ | 857 'dependencies': [ |
| 858 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 858 '<(icu_gyp_path):icui18n', |
| 859 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 859 '<(icu_gyp_path):icuuc', |
| 860 ] | 860 ] |
| 861 }, { # v8_enable_i18n_support==0 | 861 }, { # v8_enable_i18n_support==0 |
| 862 'sources!': [ | 862 'sources!': [ |
| 863 '../../src/i18n.cc', | 863 '../../src/i18n.cc', |
| 864 '../../src/i18n.h', | 864 '../../src/i18n.h', |
| 865 ], | 865 ], |
| 866 }], | 866 }], |
| 867 ['OS=="win" and v8_enable_i18n_support==1', { | 867 ['OS=="win" and v8_enable_i18n_support==1', { |
| 868 'dependencies': [ | 868 'dependencies': [ |
| 869 '<(DEPTH)/third_party/icu/icu.gyp:icudata', | 869 '<(icu_gyp_path):icudata', |
| 870 ], | 870 ], |
| 871 }], | 871 }], |
| 872 ], | 872 ], |
| 873 }, | 873 }, |
| 874 { | 874 { |
| 875 'target_name': 'js2c', | 875 'target_name': 'js2c', |
| 876 'type': 'none', | 876 'type': 'none', |
| 877 'conditions': [ | 877 'conditions': [ |
| 878 ['want_separate_host_toolset==1', { | 878 ['want_separate_host_toolset==1', { |
| 879 'toolsets': ['host'], | 879 'toolsets': ['host'], |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 }], | 1040 }], |
| 1041 ['v8_compress_startup_data=="bz2"', { | 1041 ['v8_compress_startup_data=="bz2"', { |
| 1042 'libraries': [ | 1042 'libraries': [ |
| 1043 '-lbz2', | 1043 '-lbz2', |
| 1044 ] | 1044 ] |
| 1045 }], | 1045 }], |
| 1046 ], | 1046 ], |
| 1047 }, | 1047 }, |
| 1048 ], | 1048 ], |
| 1049 } | 1049 } |
| OLD | NEW |