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

Side by Side Diff: src/v8.gyp

Issue 2268513002: Cleanup: Move ParseInfo to a separate file. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 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 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 'objects-printer.cc', 1047 'objects-printer.cc',
1048 'objects.cc', 1048 'objects.cc',
1049 'objects.h', 1049 'objects.h',
1050 'ostreams.cc', 1050 'ostreams.cc',
1051 'ostreams.h', 1051 'ostreams.h',
1052 'parsing/expression-classifier.h', 1052 'parsing/expression-classifier.h',
1053 'parsing/func-name-inferrer.cc', 1053 'parsing/func-name-inferrer.cc',
1054 'parsing/func-name-inferrer.h', 1054 'parsing/func-name-inferrer.h',
1055 'parsing/parameter-initializer-rewriter.cc', 1055 'parsing/parameter-initializer-rewriter.cc',
1056 'parsing/parameter-initializer-rewriter.h', 1056 'parsing/parameter-initializer-rewriter.h',
1057 'parsing/parse-info.cc',
1058 'parsing/parse-info.h',
1057 'parsing/parser-base.h', 1059 'parsing/parser-base.h',
1058 'parsing/parser.cc', 1060 'parsing/parser.cc',
1059 'parsing/parser.h', 1061 'parsing/parser.h',
1060 'parsing/pattern-rewriter.cc', 1062 'parsing/pattern-rewriter.cc',
1061 'parsing/preparse-data-format.h', 1063 'parsing/preparse-data-format.h',
1062 'parsing/preparse-data.cc', 1064 'parsing/preparse-data.cc',
1063 'parsing/preparse-data.h', 1065 'parsing/preparse-data.h',
1064 'parsing/preparser.cc', 1066 'parsing/preparser.cc',
1065 'parsing/preparser.h', 1067 'parsing/preparser.h',
1066 'parsing/rewriter.cc', 1068 'parsing/rewriter.cc',
(...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2412 'conditions': [ 2414 'conditions': [
2413 ['want_separate_host_toolset_mkpeephole==1', { 2415 ['want_separate_host_toolset_mkpeephole==1', {
2414 'toolsets': ['host'], 2416 'toolsets': ['host'],
2415 }, { 2417 }, {
2416 'toolsets': ['target'], 2418 'toolsets': ['target'],
2417 }], 2419 }],
2418 ], 2420 ],
2419 }, 2421 },
2420 ], 2422 ],
2421 } 2423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698