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

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

Issue 1565183002: [regexp] move regexp parser into own files. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix test compile Created 4 years, 11 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
« no previous file with comments | « test/cctest/test-regexp.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 946 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 '../../src/property-details.h', 957 '../../src/property-details.h',
958 '../../src/property.cc', 958 '../../src/property.cc',
959 '../../src/property.h', 959 '../../src/property.h',
960 '../../src/prototype.h', 960 '../../src/prototype.h',
961 '../../src/regexp/bytecodes-irregexp.h', 961 '../../src/regexp/bytecodes-irregexp.h',
962 '../../src/regexp/interpreter-irregexp.cc', 962 '../../src/regexp/interpreter-irregexp.cc',
963 '../../src/regexp/interpreter-irregexp.h', 963 '../../src/regexp/interpreter-irregexp.h',
964 '../../src/regexp/jsregexp-inl.h', 964 '../../src/regexp/jsregexp-inl.h',
965 '../../src/regexp/jsregexp.cc', 965 '../../src/regexp/jsregexp.cc',
966 '../../src/regexp/jsregexp.h', 966 '../../src/regexp/jsregexp.h',
967 '../../src/regexp/regexp-ast.cc',
968 '../../src/regexp/regexp-ast.h',
967 '../../src/regexp/regexp-macro-assembler-irregexp-inl.h', 969 '../../src/regexp/regexp-macro-assembler-irregexp-inl.h',
968 '../../src/regexp/regexp-macro-assembler-irregexp.cc', 970 '../../src/regexp/regexp-macro-assembler-irregexp.cc',
969 '../../src/regexp/regexp-macro-assembler-irregexp.h', 971 '../../src/regexp/regexp-macro-assembler-irregexp.h',
970 '../../src/regexp/regexp-macro-assembler-tracer.cc', 972 '../../src/regexp/regexp-macro-assembler-tracer.cc',
971 '../../src/regexp/regexp-macro-assembler-tracer.h', 973 '../../src/regexp/regexp-macro-assembler-tracer.h',
972 '../../src/regexp/regexp-macro-assembler.cc', 974 '../../src/regexp/regexp-macro-assembler.cc',
973 '../../src/regexp/regexp-macro-assembler.h', 975 '../../src/regexp/regexp-macro-assembler.h',
976 '../../src/regexp/regexp-parser.cc',
977 '../../src/regexp/regexp-parser.h',
974 '../../src/regexp/regexp-stack.cc', 978 '../../src/regexp/regexp-stack.cc',
975 '../../src/regexp/regexp-stack.h', 979 '../../src/regexp/regexp-stack.h',
976 '../../src/register-configuration.cc', 980 '../../src/register-configuration.cc',
977 '../../src/register-configuration.h', 981 '../../src/register-configuration.h',
978 '../../src/runtime-profiler.cc', 982 '../../src/runtime-profiler.cc',
979 '../../src/runtime-profiler.h', 983 '../../src/runtime-profiler.h',
980 '../../src/runtime/runtime-array.cc', 984 '../../src/runtime/runtime-array.cc',
981 '../../src/runtime/runtime-atomics.cc', 985 '../../src/runtime/runtime-atomics.cc',
982 '../../src/runtime/runtime-classes.cc', 986 '../../src/runtime/runtime-classes.cc',
983 '../../src/runtime/runtime-collections.cc', 987 '../../src/runtime/runtime-collections.cc',
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
2118 }], 2122 }],
2119 ['want_separate_host_toolset==1', { 2123 ['want_separate_host_toolset==1', {
2120 'toolsets': ['host'], 2124 'toolsets': ['host'],
2121 }, { 2125 }, {
2122 'toolsets': ['target'], 2126 'toolsets': ['target'],
2123 }], 2127 }],
2124 ], 2128 ],
2125 }, 2129 },
2126 ], 2130 ],
2127 } 2131 }
OLDNEW
« no previous file with comments | « test/cctest/test-regexp.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698