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

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

Issue 4060001: Bignum implementation of Strtod. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: bignum.h changes that somehow disappeared earlier. Created 10 years, 1 month 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/cctest/test-strtod.cc ('k') | tools/visual_studio/v8_base.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009 the V8 project authors. All rights reserved. 1 # Copyright 2009 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 '../../src/allocation.h', 273 '../../src/allocation.h',
274 '../../src/api.cc', 274 '../../src/api.cc',
275 '../../src/api.h', 275 '../../src/api.h',
276 '../../src/apiutils.h', 276 '../../src/apiutils.h',
277 '../../src/arguments.h', 277 '../../src/arguments.h',
278 '../../src/assembler.cc', 278 '../../src/assembler.cc',
279 '../../src/assembler.h', 279 '../../src/assembler.h',
280 '../../src/ast.cc', 280 '../../src/ast.cc',
281 '../../src/ast-inl.h', 281 '../../src/ast-inl.h',
282 '../../src/ast.h', 282 '../../src/ast.h',
283 '../../src/bignum.cc',
284 '../../src/bignum.h',
285 '../../src/bignum-dtoa.cc',
286 '../../src/bignum-dtoa.h',
283 '../../src/bootstrapper.cc', 287 '../../src/bootstrapper.cc',
284 '../../src/bootstrapper.h', 288 '../../src/bootstrapper.h',
285 '../../src/builtins.cc', 289 '../../src/builtins.cc',
286 '../../src/builtins.h', 290 '../../src/builtins.h',
287 '../../src/bytecodes-irregexp.h', 291 '../../src/bytecodes-irregexp.h',
288 '../../src/cached-powers.cc', 292 '../../src/cached-powers.cc',
289 '../../src/cached-powers.h', 293 '../../src/cached-powers.h',
290 '../../src/char-predicates-inl.h', 294 '../../src/char-predicates-inl.h',
291 '../../src/char-predicates.h', 295 '../../src/char-predicates.h',
292 '../../src/checks.cc', 296 '../../src/checks.cc',
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 ], 744 ],
741 'conditions': [ 745 'conditions': [
742 ['OS=="win"', { 746 ['OS=="win"', {
743 # This could be gotten by not setting chromium_code, if that's OK. 747 # This could be gotten by not setting chromium_code, if that's OK.
744 'defines': ['_CRT_SECURE_NO_WARNINGS'], 748 'defines': ['_CRT_SECURE_NO_WARNINGS'],
745 }], 749 }],
746 ], 750 ],
747 }, 751 },
748 ], 752 ],
749 } 753 }
OLDNEW
« no previous file with comments | « test/cctest/test-strtod.cc ('k') | tools/visual_studio/v8_base.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698