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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 '../../src/hydrogen-instructions.cc', | 346 '../../src/hydrogen-instructions.cc', |
347 '../../src/hydrogen-instructions.h', | 347 '../../src/hydrogen-instructions.h', |
348 '../../src/hydrogen.cc', | 348 '../../src/hydrogen.cc', |
349 '../../src/hydrogen.h', | 349 '../../src/hydrogen.h', |
350 '../../src/hydrogen-gvn.cc', | 350 '../../src/hydrogen-gvn.cc', |
351 '../../src/hydrogen-gvn.h', | 351 '../../src/hydrogen-gvn.h', |
352 '../../src/hydrogen-infer-representation.cc', | 352 '../../src/hydrogen-infer-representation.cc', |
353 '../../src/hydrogen-infer-representation.h', | 353 '../../src/hydrogen-infer-representation.h', |
354 '../../src/hydrogen-infer-types.cc', | 354 '../../src/hydrogen-infer-types.cc', |
355 '../../src/hydrogen-infer-types.h', | 355 '../../src/hydrogen-infer-types.h', |
356 '../../src/hydrogen-load-elimination.cc', | |
357 '../../src/hydrogen-load-elimination.h', | |
358 '../../src/hydrogen-mark-deoptimize.cc', | 356 '../../src/hydrogen-mark-deoptimize.cc', |
359 '../../src/hydrogen-mark-deoptimize.h', | 357 '../../src/hydrogen-mark-deoptimize.h', |
360 '../../src/hydrogen-minus-zero.cc', | 358 '../../src/hydrogen-minus-zero.cc', |
361 '../../src/hydrogen-minus-zero.h', | 359 '../../src/hydrogen-minus-zero.h', |
362 '../../src/hydrogen-osr.cc', | 360 '../../src/hydrogen-osr.cc', |
363 '../../src/hydrogen-osr.h', | 361 '../../src/hydrogen-osr.h', |
364 '../../src/hydrogen-range-analysis.cc', | 362 '../../src/hydrogen-range-analysis.cc', |
365 '../../src/hydrogen-range-analysis.h', | 363 '../../src/hydrogen-range-analysis.h', |
366 '../../src/hydrogen-redundant-phi.cc', | 364 '../../src/hydrogen-redundant-phi.cc', |
367 '../../src/hydrogen-redundant-phi.h', | 365 '../../src/hydrogen-redundant-phi.h', |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 'V8_SHARED', | 848 'V8_SHARED', |
851 ], | 849 ], |
852 }], | 850 }], |
853 ['v8_postmortem_support=="true"', { | 851 ['v8_postmortem_support=="true"', { |
854 'sources': [ | 852 'sources': [ |
855 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', | 853 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', |
856 ] | 854 ] |
857 }], | 855 }], |
858 ['v8_enable_i18n_support==1', { | 856 ['v8_enable_i18n_support==1', { |
859 'dependencies': [ | 857 'dependencies': [ |
860 '<(icu_gyp_path):icui18n', | 858 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
861 '<(icu_gyp_path):icuuc', | 859 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
862 ] | 860 ] |
863 }, { # v8_enable_i18n_support==0 | 861 }, { # v8_enable_i18n_support==0 |
864 'sources!': [ | 862 'sources!': [ |
865 '../../src/i18n.cc', | 863 '../../src/i18n.cc', |
866 '../../src/i18n.h', | 864 '../../src/i18n.h', |
867 ], | 865 ], |
868 }], | 866 }], |
869 ['OS=="win" and v8_enable_i18n_support==1', { | 867 ['OS=="win" and v8_enable_i18n_support==1', { |
870 'dependencies': [ | 868 'dependencies': [ |
871 '<(icu_gyp_path):icudata', | 869 '<(DEPTH)/third_party/icu/icu.gyp:icudata', |
872 ], | 870 ], |
873 }], | 871 }], |
874 ], | 872 ], |
875 }, | 873 }, |
876 { | 874 { |
877 'target_name': 'js2c', | 875 'target_name': 'js2c', |
878 'type': 'none', | 876 'type': 'none', |
879 'conditions': [ | 877 'conditions': [ |
880 ['want_separate_host_toolset==1', { | 878 ['want_separate_host_toolset==1', { |
881 'toolsets': ['host'], | 879 'toolsets': ['host'], |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1042 }], | 1040 }], |
1043 ['v8_compress_startup_data=="bz2"', { | 1041 ['v8_compress_startup_data=="bz2"', { |
1044 'libraries': [ | 1042 'libraries': [ |
1045 '-lbz2', | 1043 '-lbz2', |
1046 ] | 1044 ] |
1047 }], | 1045 }], |
1048 ], | 1046 ], |
1049 }, | 1047 }, |
1050 ], | 1048 ], |
1051 } | 1049 } |
OLD | NEW |