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

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: Even 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
« no previous file with comments | « test/mjsunit/harmony/typedarrays-foreach.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 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 '../../src/mirror-debugger.js', 1586 '../../src/mirror-debugger.js',
1587 '../../src/liveedit-debugger.js', 1587 '../../src/liveedit-debugger.js',
1588 '../../src/macros.py', 1588 '../../src/macros.py',
1589 ], 1589 ],
1590 'experimental_library_files': [ 1590 'experimental_library_files': [
1591 '../../src/macros.py', 1591 '../../src/macros.py',
1592 '../../src/proxy.js', 1592 '../../src/proxy.js',
1593 '../../src/generator.js', 1593 '../../src/generator.js',
1594 '../../src/harmony-string.js', 1594 '../../src/harmony-string.js',
1595 '../../src/harmony-array.js', 1595 '../../src/harmony-array.js',
1596 '../../src/harmony-typedarray.js',
1596 '../../src/harmony-classes.js', 1597 '../../src/harmony-classes.js',
1597 ], 1598 ],
1598 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1599 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1599 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1600 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1600 }, 1601 },
1601 'actions': [ 1602 'actions': [
1602 { 1603 {
1603 'action_name': 'js2c', 1604 'action_name': 'js2c',
1604 'inputs': [ 1605 'inputs': [
1605 '../../tools/js2c.py', 1606 '../../tools/js2c.py',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1701 }], 1702 }],
1702 ['v8_compress_startup_data=="bz2"', { 1703 ['v8_compress_startup_data=="bz2"', {
1703 'libraries': [ 1704 'libraries': [
1704 '-lbz2', 1705 '-lbz2',
1705 ] 1706 ]
1706 }], 1707 }],
1707 ], 1708 ],
1708 }, 1709 },
1709 ], 1710 ],
1710 } 1711 }
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/typedarrays-foreach.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698