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

Side by Side Diff: src/v8.gyp

Issue 2402363002: [Math] implement Math.random as TFJ builtin. (Closed)
Patch Set: fix golden file Created 4 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
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 2202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2213 'variables': { 2213 'variables': {
2214 'library_files': [ 2214 'library_files': [
2215 'js/macros.py', 2215 'js/macros.py',
2216 'messages.h', 2216 'messages.h',
2217 'js/prologue.js', 2217 'js/prologue.js',
2218 'js/runtime.js', 2218 'js/runtime.js',
2219 'js/v8natives.js', 2219 'js/v8natives.js',
2220 'js/symbol.js', 2220 'js/symbol.js',
2221 'js/array.js', 2221 'js/array.js',
2222 'js/string.js', 2222 'js/string.js',
2223 'js/math.js',
2224 'js/regexp.js', 2223 'js/regexp.js',
2225 'js/arraybuffer.js', 2224 'js/arraybuffer.js',
2226 'js/typedarray.js', 2225 'js/typedarray.js',
2227 'js/collection.js', 2226 'js/collection.js',
2228 'js/weak-collection.js', 2227 'js/weak-collection.js',
2229 'js/collection-iterator.js', 2228 'js/collection-iterator.js',
2230 'js/promise.js', 2229 'js/promise.js',
2231 'js/messages.js', 2230 'js/messages.js',
2232 'js/array-iterator.js', 2231 'js/array-iterator.js',
2233 'js/templates.js', 2232 'js/templates.js',
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
2469 'conditions': [ 2468 'conditions': [
2470 ['want_separate_host_toolset_mkpeephole==1', { 2469 ['want_separate_host_toolset_mkpeephole==1', {
2471 'toolsets': ['host'], 2470 'toolsets': ['host'],
2472 }, { 2471 }, {
2473 'toolsets': ['target'], 2472 'toolsets': ['target'],
2474 }], 2473 }],
2475 ], 2474 ],
2476 }, 2475 },
2477 ], 2476 ],
2478 } 2477 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698