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

Side by Side Diff: BUILD.gn

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 | « no previous file | src/ast/ast.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 "src/property-details.h", 1178 "src/property-details.h",
1179 "src/property.cc", 1179 "src/property.cc",
1180 "src/property.h", 1180 "src/property.h",
1181 "src/prototype.h", 1181 "src/prototype.h",
1182 "src/regexp/bytecodes-irregexp.h", 1182 "src/regexp/bytecodes-irregexp.h",
1183 "src/regexp/interpreter-irregexp.cc", 1183 "src/regexp/interpreter-irregexp.cc",
1184 "src/regexp/interpreter-irregexp.h", 1184 "src/regexp/interpreter-irregexp.h",
1185 "src/regexp/jsregexp-inl.h", 1185 "src/regexp/jsregexp-inl.h",
1186 "src/regexp/jsregexp.cc", 1186 "src/regexp/jsregexp.cc",
1187 "src/regexp/jsregexp.h", 1187 "src/regexp/jsregexp.h",
1188 "src/regexp/regexp-ast.cc",
1189 "src/regexp/regexp-ast.h",
1188 "src/regexp/regexp-macro-assembler-irregexp-inl.h", 1190 "src/regexp/regexp-macro-assembler-irregexp-inl.h",
1189 "src/regexp/regexp-macro-assembler-irregexp.cc", 1191 "src/regexp/regexp-macro-assembler-irregexp.cc",
1190 "src/regexp/regexp-macro-assembler-irregexp.h", 1192 "src/regexp/regexp-macro-assembler-irregexp.h",
1191 "src/regexp/regexp-macro-assembler-tracer.cc", 1193 "src/regexp/regexp-macro-assembler-tracer.cc",
1192 "src/regexp/regexp-macro-assembler-tracer.h", 1194 "src/regexp/regexp-macro-assembler-tracer.h",
1193 "src/regexp/regexp-macro-assembler.cc", 1195 "src/regexp/regexp-macro-assembler.cc",
1194 "src/regexp/regexp-macro-assembler.h", 1196 "src/regexp/regexp-macro-assembler.h",
1197 "src/regexp/regexp-parser.cc",
1198 "src/regexp/regexp-parser.h",
1195 "src/regexp/regexp-stack.cc", 1199 "src/regexp/regexp-stack.cc",
1196 "src/regexp/regexp-stack.h", 1200 "src/regexp/regexp-stack.h",
1197 "src/register-configuration.cc", 1201 "src/register-configuration.cc",
1198 "src/register-configuration.h", 1202 "src/register-configuration.h",
1199 "src/runtime-profiler.cc", 1203 "src/runtime-profiler.cc",
1200 "src/runtime-profiler.h", 1204 "src/runtime-profiler.h",
1201 "src/runtime/runtime-array.cc", 1205 "src/runtime/runtime-array.cc",
1202 "src/runtime/runtime-atomics.cc", 1206 "src/runtime/runtime-atomics.cc",
1203 "src/runtime/runtime-classes.cc", 1207 "src/runtime/runtime-classes.cc",
1204 "src/runtime/runtime-collections.cc", 1208 "src/runtime/runtime-collections.cc",
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
1880 if (!is_component_build) { 1884 if (!is_component_build) {
1881 sources += [ 1885 sources += [
1882 "$target_gen_dir/d8-js.cc", 1886 "$target_gen_dir/d8-js.cc",
1883 ] 1887 ]
1884 } 1888 }
1885 if (v8_enable_i18n_support) { 1889 if (v8_enable_i18n_support) {
1886 deps += [ "//third_party/icu" ] 1890 deps += [ "//third_party/icu" ]
1887 } 1891 }
1888 } 1892 }
1889 } 1893 }
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698