Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(937)

Side by Side Diff: tools/gyp/v8.gyp

Issue 11418101: build: make python executable configurable
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 { 795 {
796 'action_name': 'js2c', 796 'action_name': 'js2c',
797 'inputs': [ 797 'inputs': [
798 '../../tools/js2c.py', 798 '../../tools/js2c.py',
799 '<@(library_files)', 799 '<@(library_files)',
800 ], 800 ],
801 'outputs': [ 801 'outputs': [
802 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 802 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
803 ], 803 ],
804 'action': [ 804 'action': [
805 'python', 805 '<(python)',
806 '../../tools/js2c.py', 806 '../../tools/js2c.py',
807 '<@(_outputs)', 807 '<@(_outputs)',
808 'CORE', 808 'CORE',
809 '<(v8_compress_startup_data)', 809 '<(v8_compress_startup_data)',
810 '<@(library_files)' 810 '<@(library_files)'
811 ], 811 ],
812 }, 812 },
813 { 813 {
814 'action_name': 'js2c_experimental', 814 'action_name': 'js2c_experimental',
815 'inputs': [ 815 'inputs': [
816 '../../tools/js2c.py', 816 '../../tools/js2c.py',
817 '<@(experimental_library_files)', 817 '<@(experimental_library_files)',
818 ], 818 ],
819 'outputs': [ 819 'outputs': [
820 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 820 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
821 ], 821 ],
822 'action': [ 822 'action': [
823 'python', 823 '<(python)',
824 '../../tools/js2c.py', 824 '../../tools/js2c.py',
825 '<@(_outputs)', 825 '<@(_outputs)',
826 'EXPERIMENTAL', 826 'EXPERIMENTAL',
827 '<(v8_compress_startup_data)', 827 '<(v8_compress_startup_data)',
828 '<@(experimental_library_files)' 828 '<@(experimental_library_files)'
829 ], 829 ],
830 }, 830 },
831 ], 831 ],
832 }, 832 },
833 { 833 {
834 'target_name': 'postmortem-metadata', 834 'target_name': 'postmortem-metadata',
835 'type': 'none', 835 'type': 'none',
836 'variables': { 836 'variables': {
837 'heapobject_files': [ 837 'heapobject_files': [
838 '../../src/objects.h', 838 '../../src/objects.h',
839 '../../src/objects-inl.h', 839 '../../src/objects-inl.h',
840 ], 840 ],
841 }, 841 },
842 'actions': [ 842 'actions': [
843 { 843 {
844 'action_name': 'gen-postmortem-metadata', 844 'action_name': 'gen-postmortem-metadata',
845 'inputs': [ 845 'inputs': [
846 '../../tools/gen-postmortem-metadata.py', 846 '../../tools/gen-postmortem-metadata.py',
847 '<@(heapobject_files)', 847 '<@(heapobject_files)',
848 ], 848 ],
849 'outputs': [ 849 'outputs': [
850 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 850 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
851 ], 851 ],
852 'action': [ 852 'action': [
853 'python', 853 '<(python)',
854 '../../tools/gen-postmortem-metadata.py', 854 '../../tools/gen-postmortem-metadata.py',
855 '<@(_outputs)', 855 '<@(_outputs)',
856 '<@(heapobject_files)' 856 '<@(heapobject_files)'
857 ] 857 ]
858 } 858 }
859 ] 859 ]
860 }, 860 },
861 { 861 {
862 'target_name': 'mksnapshot', 862 'target_name': 'mksnapshot',
863 'type': 'executable', 863 'type': 'executable',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 }], 1007 }],
1008 ], 1008 ],
1009 'dependencies': [ 1009 'dependencies': [
1010 'v8' 1010 'v8'
1011 ], 1011 ],
1012 }, 1012 },
1013 ], 1013 ],
1014 }], 1014 }],
1015 ], 1015 ],
1016 } 1016 }
OLDNEW
« no previous file with comments | « test/cctest/cctest.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698