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

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

Issue 583723002: Implement .forEach() on typed arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Allow transplanting method to other typed arrays, more tests Created 6 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 | 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 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 '../../src/mirror-debugger.js', 1573 '../../src/mirror-debugger.js',
1574 '../../src/liveedit-debugger.js', 1574 '../../src/liveedit-debugger.js',
1575 '../../src/macros.py', 1575 '../../src/macros.py',
1576 ], 1576 ],
1577 'experimental_library_files': [ 1577 'experimental_library_files': [
1578 '../../src/macros.py', 1578 '../../src/macros.py',
1579 '../../src/proxy.js', 1579 '../../src/proxy.js',
1580 '../../src/generator.js', 1580 '../../src/generator.js',
1581 '../../src/harmony-string.js', 1581 '../../src/harmony-string.js',
1582 '../../src/harmony-array.js', 1582 '../../src/harmony-array.js',
1583 '../../src/harmony-typedarray.js',
1583 '../../src/harmony-classes.js', 1584 '../../src/harmony-classes.js',
1584 ], 1585 ],
1585 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1586 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1586 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1587 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1587 }, 1588 },
1588 'actions': [ 1589 'actions': [
1589 { 1590 {
1590 'action_name': 'js2c', 1591 'action_name': 'js2c',
1591 'inputs': [ 1592 'inputs': [
1592 '../../tools/js2c.py', 1593 '../../tools/js2c.py',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 }], 1689 }],
1689 ['v8_compress_startup_data=="bz2"', { 1690 ['v8_compress_startup_data=="bz2"', {
1690 'libraries': [ 1691 'libraries': [
1691 '-lbz2', 1692 '-lbz2',
1692 ] 1693 ]
1693 }], 1694 }],
1694 ], 1695 ],
1695 }, 1696 },
1696 ], 1697 ],
1697 } 1698 }
OLDNEW
« src/harmony-typedarray.js ('K') | « test/mjsunit/harmony/typedarrays-foreach.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698