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

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

Issue 1069883002: WIP SharedArrayBuffer implementation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update MakeTypeError calls Created 5 years, 7 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
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 1710 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 '../../src/macros.py', 1721 '../../src/macros.py',
1722 '../../src/messages.h', 1722 '../../src/messages.h',
1723 '../../src/proxy.js', 1723 '../../src/proxy.js',
1724 '../../src/generator.js', 1724 '../../src/generator.js',
1725 '../../src/harmony-array.js', 1725 '../../src/harmony-array.js',
1726 '../../src/harmony-array-includes.js', 1726 '../../src/harmony-array-includes.js',
1727 '../../src/harmony-tostring.js', 1727 '../../src/harmony-tostring.js',
1728 '../../src/harmony-typedarray.js', 1728 '../../src/harmony-typedarray.js',
1729 '../../src/harmony-regexp.js', 1729 '../../src/harmony-regexp.js',
1730 '../../src/harmony-reflect.js', 1730 '../../src/harmony-reflect.js',
1731 '../../src/harmony-spread.js' 1731 '../../src/harmony-spread.js',
1732 '../../src/harmony-sharedarraybuffer.js',
1733 '../../src/harmony-sharedtypedarray.js',
jochen (gone - plz use gerrit) 2015/04/28 18:31:46 please also update BUILD.gn
binji 2015/04/29 18:27:22 Done.
1732 ], 1734 ],
1733 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1735 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1734 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1736 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1735 }, 1737 },
1736 'actions': [ 1738 'actions': [
1737 { 1739 {
1738 'action_name': 'js2c', 1740 'action_name': 'js2c',
1739 'inputs': [ 1741 'inputs': [
1740 '../../tools/js2c.py', 1742 '../../tools/js2c.py',
1741 '<@(library_files)', 1743 '<@(library_files)',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 }], 1837 }],
1836 ['want_separate_host_toolset==1', { 1838 ['want_separate_host_toolset==1', {
1837 'toolsets': ['host'], 1839 'toolsets': ['host'],
1838 }, { 1840 }, {
1839 'toolsets': ['target'], 1841 'toolsets': ['target'],
1840 }], 1842 }],
1841 ], 1843 ],
1842 }, 1844 },
1843 ], 1845 ],
1844 } 1846 }
OLDNEW
« src/runtime/runtime-typedarray.cc ('K') | « test/mjsunit/shared-typed-arrays.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698