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

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

Issue 548833002: [es6] implement Object.assign (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased again Created 5 years, 8 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 | Annotate | Revision Log
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 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 ], 1715 ],
1716 'experimental_library_files': [ 1716 'experimental_library_files': [
1717 '../../src/macros.py', 1717 '../../src/macros.py',
1718 '../../src/proxy.js', 1718 '../../src/proxy.js',
1719 '../../src/generator.js', 1719 '../../src/generator.js',
1720 '../../src/harmony-array.js', 1720 '../../src/harmony-array.js',
1721 '../../src/harmony-array-includes.js', 1721 '../../src/harmony-array-includes.js',
1722 '../../src/harmony-tostring.js', 1722 '../../src/harmony-tostring.js',
1723 '../../src/harmony-typedarray.js', 1723 '../../src/harmony-typedarray.js',
1724 '../../src/harmony-regexp.js', 1724 '../../src/harmony-regexp.js',
1725 '../../src/harmony-reflect.js' 1725 '../../src/harmony-reflect.js',
1726 '../../src/harmony-object.js'
1726 ], 1727 ],
1727 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1728 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1728 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1729 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1729 }, 1730 },
1730 'actions': [ 1731 'actions': [
1731 { 1732 {
1732 'action_name': 'js2c', 1733 'action_name': 'js2c',
1733 'inputs': [ 1734 'inputs': [
1734 '../../tools/js2c.py', 1735 '../../tools/js2c.py',
1735 '<@(library_files)', 1736 '<@(library_files)',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1829 }], 1830 }],
1830 ['want_separate_host_toolset==1', { 1831 ['want_separate_host_toolset==1', {
1831 'toolsets': ['host'], 1832 'toolsets': ['host'],
1832 }, { 1833 }, {
1833 'toolsets': ['target'], 1834 'toolsets': ['target'],
1834 }], 1835 }],
1835 ], 1836 ],
1836 }, 1837 },
1837 ], 1838 ],
1838 } 1839 }
OLDNEW
« test/mjsunit/harmony/object-assign.js ('K') | « test/mjsunit/harmony/object-assign.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698