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

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

Issue 1398733002: Move builtin JavaScript sources into own directory. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Also move macros.py file. Created 5 years, 2 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
« no previous file with comments | « src/weak-collection.js ('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 1787 matching lines...) Expand 10 before | Expand all | Expand 10 after
1798 'type': 'none', 1798 'type': 'none',
1799 'conditions': [ 1799 'conditions': [
1800 ['want_separate_host_toolset==1', { 1800 ['want_separate_host_toolset==1', {
1801 'toolsets': ['host'], 1801 'toolsets': ['host'],
1802 }, { 1802 }, {
1803 'toolsets': ['target'], 1803 'toolsets': ['target'],
1804 }], 1804 }],
1805 ['v8_enable_i18n_support==1', { 1805 ['v8_enable_i18n_support==1', {
1806 'variables': { 1806 'variables': {
1807 'i18n_library_files': [ 1807 'i18n_library_files': [
1808 '../../src/i18n.js', 1808 '../../src/js/i18n.js',
1809 ], 1809 ],
1810 }, 1810 },
1811 }, { 1811 }, {
1812 'variables': { 1812 'variables': {
1813 'i18n_library_files': [], 1813 'i18n_library_files': [],
1814 }, 1814 },
1815 }], 1815 }],
1816 ], 1816 ],
1817 'variables': { 1817 'variables': {
1818 'library_files': [ 1818 'library_files': [
1819 '../../src/macros.py', 1819 '../../src/js/macros.py',
1820 '../../src/messages.h', 1820 '../../src/messages.h',
1821 '../../src/prologue.js', 1821 '../../src/js/prologue.js',
1822 '../../src/runtime.js', 1822 '../../src/js/runtime.js',
1823 '../../src/v8natives.js', 1823 '../../src/js/v8natives.js',
1824 '../../src/symbol.js', 1824 '../../src/js/symbol.js',
1825 '../../src/array.js', 1825 '../../src/js/array.js',
1826 '../../src/string.js', 1826 '../../src/js/string.js',
1827 '../../src/uri.js', 1827 '../../src/js/uri.js',
1828 '../../src/math.js', 1828 '../../src/js/math.js',
1829 '../../src/third_party/fdlibm/fdlibm.js', 1829 '../../src/third_party/fdlibm/fdlibm.js',
1830 '../../src/date.js', 1830 '../../src/js/date.js',
1831 '../../src/regexp.js', 1831 '../../src/js/regexp.js',
1832 '../../src/arraybuffer.js', 1832 '../../src/js/arraybuffer.js',
1833 '../../src/typedarray.js', 1833 '../../src/js/typedarray.js',
1834 '../../src/iterator-prototype.js', 1834 '../../src/js/iterator-prototype.js',
1835 '../../src/generator.js', 1835 '../../src/js/generator.js',
1836 '../../src/object-observe.js', 1836 '../../src/js/object-observe.js',
1837 '../../src/collection.js', 1837 '../../src/js/collection.js',
1838 '../../src/weak-collection.js', 1838 '../../src/js/weak-collection.js',
1839 '../../src/collection-iterator.js', 1839 '../../src/js/collection-iterator.js',
1840 '../../src/promise.js', 1840 '../../src/js/promise.js',
1841 '../../src/messages.js', 1841 '../../src/js/messages.js',
1842 '../../src/json.js', 1842 '../../src/js/json.js',
1843 '../../src/array-iterator.js', 1843 '../../src/js/array-iterator.js',
1844 '../../src/string-iterator.js', 1844 '../../src/js/string-iterator.js',
1845 '../../src/templates.js', 1845 '../../src/js/templates.js',
1846 '../../src/harmony-array.js', 1846 '../../src/js/harmony-array.js',
1847 '../../src/harmony-typedarray.js', 1847 '../../src/js/harmony-typedarray.js',
1848 '../../src/debug/mirrors.js', 1848 '../../src/debug/mirrors.js',
1849 '../../src/debug/debug.js', 1849 '../../src/debug/debug.js',
1850 '../../src/debug/liveedit.js', 1850 '../../src/debug/liveedit.js',
1851 ], 1851 ],
1852 'experimental_library_files': [ 1852 'experimental_library_files': [
1853 '../../src/macros.py', 1853 '../../src/js/macros.py',
1854 '../../src/messages.h', 1854 '../../src/messages.h',
1855 '../../src/proxy.js', 1855 '../../src/js/proxy.js',
1856 '../../src/generator.js', 1856 '../../src/js/generator.js',
1857 '../../src/harmony-atomics.js', 1857 '../../src/js/harmony-atomics.js',
1858 '../../src/harmony-array-includes.js', 1858 '../../src/js/harmony-array-includes.js',
1859 '../../src/harmony-concat-spreadable.js', 1859 '../../src/js/harmony-concat-spreadable.js',
1860 '../../src/harmony-tostring.js', 1860 '../../src/js/harmony-tostring.js',
1861 '../../src/harmony-regexp.js', 1861 '../../src/js/harmony-regexp.js',
1862 '../../src/harmony-reflect.js', 1862 '../../src/js/harmony-reflect.js',
1863 '../../src/harmony-spread.js', 1863 '../../src/js/harmony-spread.js',
1864 '../../src/harmony-object-observe.js', 1864 '../../src/js/harmony-object-observe.js',
1865 '../../src/harmony-sharedarraybuffer.js', 1865 '../../src/js/harmony-sharedarraybuffer.js',
1866 '../../src/harmony-simd.js', 1866 '../../src/js/harmony-simd.js',
1867 ], 1867 ],
1868 'code_stub_library_files': [ 1868 'code_stub_library_files': [
1869 '../../src/macros.py', 1869 '../../src/js/macros.py',
1870 '../../src/messages.h', 1870 '../../src/messages.h',
1871 '../../src/code-stubs.js', 1871 '../../src/js/code-stubs.js',
1872 ], 1872 ],
1873 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1873 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1874 'libraries_code_stub_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-co de-stub.bin', 1874 'libraries_code_stub_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-co de-stub.bin',
1875 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1875 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1876 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1876 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1877 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin', 1877 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin',
1878 }, 1878 },
1879 'actions': [ 1879 'actions': [
1880 { 1880 {
1881 'action_name': 'js2c', 1881 'action_name': 'js2c',
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
2092 }], 2092 }],
2093 ['want_separate_host_toolset==1', { 2093 ['want_separate_host_toolset==1', {
2094 'toolsets': ['host'], 2094 'toolsets': ['host'],
2095 }, { 2095 }, {
2096 'toolsets': ['target'], 2096 'toolsets': ['target'],
2097 }], 2097 }],
2098 ], 2098 ],
2099 }, 2099 },
2100 ], 2100 ],
2101 } 2101 }
OLDNEW
« no previous file with comments | « src/weak-collection.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698