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

Side by Side Diff: src/v8.gyp

Issue 2142933003: Move Error methods to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move to builtins-error.cc Created 4 years, 5 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 'basic-block-profiler.h', 461 'basic-block-profiler.h',
462 'bignum-dtoa.cc', 462 'bignum-dtoa.cc',
463 'bignum-dtoa.h', 463 'bignum-dtoa.h',
464 'bignum.cc', 464 'bignum.cc',
465 'bignum.h', 465 'bignum.h',
466 'bit-vector.cc', 466 'bit-vector.cc',
467 'bit-vector.h', 467 'bit-vector.h',
468 'bootstrapper.cc', 468 'bootstrapper.cc',
469 'bootstrapper.h', 469 'bootstrapper.h',
470 'builtins/builtins-array.cc', 470 'builtins/builtins-array.cc',
471 'builtins/builtins-error.cc',
471 'builtins/builtins-utils.h', 472 'builtins/builtins-utils.h',
472 'builtins/builtins.cc', 473 'builtins/builtins.cc',
473 'builtins/builtins.h', 474 'builtins/builtins.h',
474 'cached-powers.cc', 475 'cached-powers.cc',
475 'cached-powers.h', 476 'cached-powers.h',
476 'cancelable-task.cc', 477 'cancelable-task.cc',
477 'cancelable-task.h', 478 'cancelable-task.h',
478 'char-predicates.cc', 479 'char-predicates.cc',
479 'char-predicates-inl.h', 480 'char-predicates-inl.h',
480 'char-predicates.h', 481 'char-predicates.h',
(...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 }], 2315 }],
2315 ['want_separate_host_toolset==1', { 2316 ['want_separate_host_toolset==1', {
2316 'toolsets': ['host'], 2317 'toolsets': ['host'],
2317 }, { 2318 }, {
2318 'toolsets': ['target'], 2319 'toolsets': ['target'],
2319 }], 2320 }],
2320 ], 2321 ],
2321 }, 2322 },
2322 ], 2323 ],
2323 } 2324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698