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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 '<(embed_script)', | 329 '<(embed_script)', |
330 ], | 330 ], |
331 }], | 331 }], |
332 ], | 332 ], |
333 }, | 333 }, |
334 ], | 334 ], |
335 }], | 335 }], |
336 ], | 336 ], |
337 }, | 337 }, |
338 { | 338 { |
339 'target_name': 'v8_version', | |
340 'type': 'none', | |
341 'conditions': [ | |
342 ['want_separate_host_toolset==1', { | |
343 'toolsets': ['host'], | |
344 }, { | |
345 'toolsets': ['target'], | |
346 }], | |
347 ], | |
348 'actions': [ | |
349 { | |
350 'action_name': 'generate_v8_version', | |
351 'inputs': [ | |
352 '../../tools/push-to-trunk/generate_version.py', | |
353 '../../src/version.cc', | |
354 ], | |
355 'outputs': [ | |
356 '<(SHARED_INTERMEDIATE_DIR)/version.cc', | |
357 ], | |
358 'action': [ | |
359 'python', | |
360 '../../tools/push-to-trunk/generate_version.py', | |
361 '<(SHARED_INTERMEDIATE_DIR)/version.cc', | |
362 ], | |
363 }, | |
364 ], | |
365 }, | |
366 { | |
367 'target_name': 'v8_base', | 339 'target_name': 'v8_base', |
368 'type': 'static_library', | 340 'type': 'static_library', |
369 'dependencies': [ | 341 'dependencies': [ |
370 'v8_libbase', | 342 'v8_libbase', |
371 ], | 343 ], |
372 'variables': { | 344 'variables': { |
373 'optimize': 'max', | 345 'optimize': 'max', |
374 }, | 346 }, |
375 'include_dirs+': [ | 347 'include_dirs+': [ |
376 '../..', | 348 '../..', |
377 ], | 349 ], |
378 'sources': [ ### gcmole(all) ### | 350 'sources': [ ### gcmole(all) ### |
379 '<(SHARED_INTERMEDIATE_DIR)/version.cc', | |
380 '../../src/accessors.cc', | 351 '../../src/accessors.cc', |
381 '../../src/accessors.h', | 352 '../../src/accessors.h', |
382 '../../src/allocation.cc', | 353 '../../src/allocation.cc', |
383 '../../src/allocation.h', | 354 '../../src/allocation.h', |
384 '../../src/allocation-site-scopes.cc', | 355 '../../src/allocation-site-scopes.cc', |
385 '../../src/allocation-site-scopes.h', | 356 '../../src/allocation-site-scopes.h', |
386 '../../src/allocation-tracker.cc', | 357 '../../src/allocation-tracker.cc', |
387 '../../src/allocation-tracker.h', | 358 '../../src/allocation-tracker.h', |
388 '../../src/api.cc', | 359 '../../src/api.cc', |
389 '../../src/api.h', | 360 '../../src/api.h', |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 '../../src/utils.cc', | 879 '../../src/utils.cc', |
909 '../../src/utils.h', | 880 '../../src/utils.h', |
910 '../../src/v8.cc', | 881 '../../src/v8.cc', |
911 '../../src/v8.h', | 882 '../../src/v8.h', |
912 '../../src/v8memory.h', | 883 '../../src/v8memory.h', |
913 '../../src/v8threads.cc', | 884 '../../src/v8threads.cc', |
914 '../../src/v8threads.h', | 885 '../../src/v8threads.h', |
915 '../../src/variables.cc', | 886 '../../src/variables.cc', |
916 '../../src/variables.h', | 887 '../../src/variables.h', |
917 '../../src/vector.h', | 888 '../../src/vector.h', |
| 889 '../../src/version.cc', |
918 '../../src/version.h', | 890 '../../src/version.h', |
919 '../../src/vm-state-inl.h', | 891 '../../src/vm-state-inl.h', |
920 '../../src/vm-state.h', | 892 '../../src/vm-state.h', |
921 '../../src/zone-inl.h', | 893 '../../src/zone-inl.h', |
922 '../../src/zone.cc', | 894 '../../src/zone.cc', |
923 '../../src/zone.h', | 895 '../../src/zone.h', |
924 '../../src/third_party/fdlibm/fdlibm.cc', | 896 '../../src/third_party/fdlibm/fdlibm.cc', |
925 '../../src/third_party/fdlibm/fdlibm.h', | 897 '../../src/third_party/fdlibm/fdlibm.h', |
926 ], | 898 ], |
927 'conditions': [ | 899 'conditions': [ |
928 ['want_separate_host_toolset==1', { | 900 ['want_separate_host_toolset==1', { |
929 'dependencies': [ | |
930 'v8_version#host', | |
931 ], | |
932 'toolsets': ['host', 'target'], | 901 'toolsets': ['host', 'target'], |
933 }, { | 902 }, { |
934 'dependencies': [ | |
935 'v8_version', | |
936 ], | |
937 'toolsets': ['target'], | 903 'toolsets': ['target'], |
938 }], | 904 }], |
939 ['v8_target_arch=="arm"', { | 905 ['v8_target_arch=="arm"', { |
940 'sources': [ ### gcmole(arch:arm) ### | 906 'sources': [ ### gcmole(arch:arm) ### |
941 '../../src/arm/assembler-arm-inl.h', | 907 '../../src/arm/assembler-arm-inl.h', |
942 '../../src/arm/assembler-arm.cc', | 908 '../../src/arm/assembler-arm.cc', |
943 '../../src/arm/assembler-arm.h', | 909 '../../src/arm/assembler-arm.h', |
944 '../../src/arm/builtins-arm.cc', | 910 '../../src/arm/builtins-arm.cc', |
945 '../../src/arm/code-stubs-arm.cc', | 911 '../../src/arm/code-stubs-arm.cc', |
946 '../../src/arm/code-stubs-arm.h', | 912 '../../src/arm/code-stubs-arm.h', |
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1797 }], | 1763 }], |
1798 ['want_separate_host_toolset==1', { | 1764 ['want_separate_host_toolset==1', { |
1799 'toolsets': ['host'], | 1765 'toolsets': ['host'], |
1800 }, { | 1766 }, { |
1801 'toolsets': ['target'], | 1767 'toolsets': ['target'], |
1802 }], | 1768 }], |
1803 ], | 1769 ], |
1804 }, | 1770 }, |
1805 ], | 1771 ], |
1806 } | 1772 } |
OLD | NEW |