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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 # This could be gotten by not setting chromium_code, if that's OK. | 919 # This could be gotten by not setting chromium_code, if that's OK. |
920 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 920 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
921 }], | 921 }], |
922 ['v8_compress_startup_data=="bz2"', { | 922 ['v8_compress_startup_data=="bz2"', { |
923 'libraries': [ | 923 'libraries': [ |
924 '-lbz2', | 924 '-lbz2', |
925 ] | 925 ] |
926 }], | 926 }], |
927 ], | 927 ], |
928 }, | 928 }, |
929 { | |
930 'target_name': 'preparser_lib', | |
931 'type': 'static_library', | |
932 'include_dirs+': [ | |
933 '../../src', | |
934 ], | |
935 'sources': [ | |
936 '../../include/v8-preparser.h', | |
937 '../../include/v8stdint.h', | |
938 '../../src/allocation.cc', | |
939 '../../src/allocation.h', | |
940 '../../src/atomicops.h', | |
941 '../../src/atomicops_internals_x86_gcc.cc', | |
942 '../../src/bignum.cc', | |
943 '../../src/bignum.h', | |
944 '../../src/bignum-dtoa.cc', | |
945 '../../src/bignum-dtoa.h', | |
946 '../../src/cached-powers.cc', | |
947 '../../src/cached-powers.h', | |
948 '../../src/char-predicates-inl.h', | |
949 '../../src/char-predicates.h', | |
950 '../../src/checks.h', | |
951 '../../src/conversions-inl.h', | |
952 '../../src/conversions.cc', | |
953 '../../src/conversions.h', | |
954 '../../src/diy-fp.cc', | |
955 '../../src/diy-fp.h', | |
956 '../../src/double.h', | |
957 '../../src/dtoa.cc', | |
958 '../../src/dtoa.h', | |
959 '../../src/fast-dtoa.cc', | |
960 '../../src/fast-dtoa.h', | |
961 '../../src/fixed-dtoa.cc', | |
962 '../../src/fixed-dtoa.h', | |
963 '../../src/globals.h', | |
964 '../../src/hashmap.h', | |
965 '../../src/list-inl.h', | |
966 '../../src/list.h', | |
967 '../../src/once.cc', | |
968 '../../src/once.h', | |
969 '../../src/preparse-data-format.h', | |
970 '../../src/preparse-data.cc', | |
971 '../../src/preparse-data.h', | |
972 '../../src/preparser.cc', | |
973 '../../src/preparser.h', | |
974 '../../src/preparser-api.cc', | |
975 '../../src/scanner.cc', | |
976 '../../src/scanner.h', | |
977 '../../src/strtod.cc', | |
978 '../../src/strtod.h', | |
979 '../../src/token.cc', | |
980 '../../src/token.h', | |
981 '../../src/unicode-inl.h', | |
982 '../../src/unicode.cc', | |
983 '../../src/unicode.h', | |
984 '../../src/utils-inl.h', | |
985 '../../src/utils.cc', | |
986 '../../src/utils.h', | |
987 ], | |
988 'conditions': [ | |
989 ['OS=="win"', { | |
990 'sources': [ | |
991 '../../src/win32-math.cc', | |
992 '../../src/win32-math.h', | |
993 ]}], | |
994 ], | |
995 }, | |
996 ], | 929 ], |
997 }, { # use_system_v8 != 0 | 930 }, { # use_system_v8 != 0 |
998 'targets': [ | 931 'targets': [ |
999 { | 932 { |
1000 'target_name': 'v8', | 933 'target_name': 'v8', |
1001 'type': 'none', | 934 'type': 'none', |
1002 'conditions': [ | 935 'conditions': [ |
1003 ['want_separate_host_toolset==1', { | 936 ['want_separate_host_toolset==1', { |
1004 'toolsets': ['host', 'target'], | 937 'toolsets': ['host', 'target'], |
1005 }, { | 938 }, { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1064 }], | 997 }], |
1065 ], | 998 ], |
1066 'dependencies': [ | 999 'dependencies': [ |
1067 'v8' | 1000 'v8' |
1068 ], | 1001 ], |
1069 }, | 1002 }, |
1070 ], | 1003 ], |
1071 }], | 1004 }], |
1072 ], | 1005 ], |
1073 } | 1006 } |
OLD | NEW |