| 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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 '../../src/extensions/i18n/i18n-extension.cc', | 826 '../../src/extensions/i18n/i18n-extension.cc', |
| 827 '../../src/extensions/i18n/i18n-extension.h', | 827 '../../src/extensions/i18n/i18n-extension.h', |
| 828 '../../src/extensions/i18n/i18n-utils.cc', | 828 '../../src/extensions/i18n/i18n-utils.cc', |
| 829 '../../src/extensions/i18n/i18n-utils.h', | 829 '../../src/extensions/i18n/i18n-utils.h', |
| 830 '../../src/extensions/i18n/locale.cc', | 830 '../../src/extensions/i18n/locale.cc', |
| 831 '../../src/extensions/i18n/locale.h', | 831 '../../src/extensions/i18n/locale.h', |
| 832 '../../src/extensions/i18n/number-format.cc', | 832 '../../src/extensions/i18n/number-format.cc', |
| 833 '../../src/extensions/i18n/number-format.h', | 833 '../../src/extensions/i18n/number-format.h', |
| 834 ], | 834 ], |
| 835 'dependencies': [ | 835 'dependencies': [ |
| 836 '<(DEPTH)/third_party/icu/icu.gyp:*', | 836 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 837 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 837 ] | 838 ] |
| 838 }], | 839 }], |
| 840 ['OS=="win" and v8_enable_i18n_support==1', { |
| 841 'dependencies': [ |
| 842 '<(DEPTH)/third_party/icu/icu.gyp:icudata', |
| 843 ], |
| 844 }], |
| 839 ], | 845 ], |
| 840 }, | 846 }, |
| 841 { | 847 { |
| 842 'target_name': 'js2c', | 848 'target_name': 'js2c', |
| 843 'type': 'none', | 849 'type': 'none', |
| 844 'conditions': [ | 850 'conditions': [ |
| 845 ['want_separate_host_toolset==1', { | 851 ['want_separate_host_toolset==1', { |
| 846 'toolsets': ['host'], | 852 'toolsets': ['host'], |
| 847 }, { | 853 }, { |
| 848 'toolsets': ['target'], | 854 'toolsets': ['target'], |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 }], | 1029 }], |
| 1024 ['v8_compress_startup_data=="bz2"', { | 1030 ['v8_compress_startup_data=="bz2"', { |
| 1025 'libraries': [ | 1031 'libraries': [ |
| 1026 '-lbz2', | 1032 '-lbz2', |
| 1027 ] | 1033 ] |
| 1028 }], | 1034 }], |
| 1029 ], | 1035 ], |
| 1030 }, | 1036 }, |
| 1031 ], | 1037 ], |
| 1032 } | 1038 } |
| OLD | NEW |