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

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

Issue 1169853007: Make js2c depend on messages.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months 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
« BUILD.gn ('K') | « src/d8.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 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1757 ], 1757 ],
1758 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1758 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1759 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1759 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1760 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1760 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1761 }, 1761 },
1762 'actions': [ 1762 'actions': [
1763 { 1763 {
1764 'action_name': 'js2c', 1764 'action_name': 'js2c',
1765 'inputs': [ 1765 'inputs': [
1766 '../../tools/js2c.py', 1766 '../../tools/js2c.py',
1767 '../../src/messages.h',
1767 '<@(library_files)', 1768 '<@(library_files)',
1768 '<@(i18n_library_files)' 1769 '<@(i18n_library_files)'
1769 ], 1770 ],
1770 'outputs': [ 1771 'outputs': [
1771 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 1772 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
1772 ], 1773 ],
1773 'action': [ 1774 'action': [
1774 'python', 1775 'python',
1775 '../../tools/js2c.py', 1776 '../../tools/js2c.py',
1776 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 1777 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
1777 'CORE', 1778 'CORE',
1778 '<@(library_files)', 1779 '<@(library_files)',
1779 '<@(i18n_library_files)' 1780 '<@(i18n_library_files)'
1780 ], 1781 ],
1781 'conditions': [ 1782 'conditions': [
1782 [ 'v8_use_external_startup_data==1', { 1783 [ 'v8_use_external_startup_data==1', {
1783 'outputs': ['<@(libraries_bin_file)'], 1784 'outputs': ['<@(libraries_bin_file)'],
1784 'action': [ 1785 'action': [
1785 '--startup_blob', '<@(libraries_bin_file)', 1786 '--startup_blob', '<@(libraries_bin_file)',
1786 ], 1787 ],
1787 }], 1788 }],
1788 ], 1789 ],
1789 }, 1790 },
1790 { 1791 {
1791 'action_name': 'js2c_experimental', 1792 'action_name': 'js2c_experimental',
1792 'inputs': [ 1793 'inputs': [
1793 '../../tools/js2c.py', 1794 '../../tools/js2c.py',
1795 '../../src/messages.h',
1794 '<@(experimental_library_files)', 1796 '<@(experimental_library_files)',
1795 ], 1797 ],
1796 'outputs': [ 1798 'outputs': [
1797 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 1799 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
1798 ], 1800 ],
1799 'action': [ 1801 'action': [
1800 'python', 1802 'python',
1801 '../../tools/js2c.py', 1803 '../../tools/js2c.py',
1802 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 1804 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
1803 'EXPERIMENTAL', 1805 'EXPERIMENTAL',
1804 '<@(experimental_library_files)' 1806 '<@(experimental_library_files)'
1805 ], 1807 ],
1806 'conditions': [ 1808 'conditions': [
1807 [ 'v8_use_external_startup_data==1', { 1809 [ 'v8_use_external_startup_data==1', {
1808 'outputs': ['<@(libraries_experimental_bin_file)'], 1810 'outputs': ['<@(libraries_experimental_bin_file)'],
1809 'action': [ 1811 'action': [
1810 '--startup_blob', '<@(libraries_experimental_bin_file)' 1812 '--startup_blob', '<@(libraries_experimental_bin_file)'
1811 ], 1813 ],
1812 }], 1814 }],
1813 ], 1815 ],
1814 }, 1816 },
1815 { 1817 {
1816 'action_name': 'js2c_extras', 1818 'action_name': 'js2c_extras',
1817 'inputs': [ 1819 'inputs': [
1818 '../../tools/js2c.py', 1820 '../../tools/js2c.py',
1821 '../../src/messages.h',
1819 '<@(v8_extra_library_files)', 1822 '<@(v8_extra_library_files)',
1820 ], 1823 ],
1821 'outputs': [ 1824 'outputs': [
1822 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 1825 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
1823 ], 1826 ],
1824 'action': [ 1827 'action': [
1825 'python', 1828 'python',
1826 '../../tools/js2c.py', 1829 '../../tools/js2c.py',
1827 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 1830 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
1828 'EXTRAS', 1831 'EXTRAS',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1886 }], 1889 }],
1887 ['want_separate_host_toolset==1', { 1890 ['want_separate_host_toolset==1', {
1888 'toolsets': ['host'], 1891 'toolsets': ['host'],
1889 }, { 1892 }, {
1890 'toolsets': ['target'], 1893 'toolsets': ['target'],
1891 }], 1894 }],
1892 ], 1895 ],
1893 }, 1896 },
1894 ], 1897 ],
1895 } 1898 }
OLDNEW
« BUILD.gn ('K') | « src/d8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698