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

Side by Side Diff: BUILD.gn

Issue 1751863002: [serializer] split up src/snapshot/serialize.* (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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/assembler.cc » ('j') | src/snapshot/deserializer.cc » ('J')
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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 "src/char-predicates-inl.h", 697 "src/char-predicates-inl.h",
698 "src/char-predicates.h", 698 "src/char-predicates.h",
699 "src/checks.h", 699 "src/checks.h",
700 "src/code-factory.cc", 700 "src/code-factory.cc",
701 "src/code-factory.h", 701 "src/code-factory.h",
702 "src/code-stubs.cc", 702 "src/code-stubs.cc",
703 "src/code-stubs.h", 703 "src/code-stubs.h",
704 "src/code-stubs-hydrogen.cc", 704 "src/code-stubs-hydrogen.cc",
705 "src/codegen.cc", 705 "src/codegen.cc",
706 "src/codegen.h", 706 "src/codegen.h",
707 "src/collector.h",
707 "src/compilation-cache.cc", 708 "src/compilation-cache.cc",
708 "src/compilation-cache.h", 709 "src/compilation-cache.h",
709 "src/compilation-dependencies.cc", 710 "src/compilation-dependencies.cc",
710 "src/compilation-dependencies.h", 711 "src/compilation-dependencies.h",
711 "src/compilation-statistics.cc", 712 "src/compilation-statistics.cc",
712 "src/compilation-statistics.h", 713 "src/compilation-statistics.h",
713 "src/compiler/access-builder.cc", 714 "src/compiler/access-builder.cc",
714 "src/compiler/access-builder.h", 715 "src/compiler/access-builder.h",
715 "src/compiler/access-info.cc", 716 "src/compiler/access-info.cc",
716 "src/compiler/access-info.h", 717 "src/compiler/access-info.h",
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 "src/runtime/runtime-typedarray.cc", 1276 "src/runtime/runtime-typedarray.cc",
1276 "src/runtime/runtime-uri.cc", 1277 "src/runtime/runtime-uri.cc",
1277 "src/runtime/runtime-utils.h", 1278 "src/runtime/runtime-utils.h",
1278 "src/runtime/runtime.cc", 1279 "src/runtime/runtime.cc",
1279 "src/runtime/runtime.h", 1280 "src/runtime/runtime.h",
1280 "src/safepoint-table.cc", 1281 "src/safepoint-table.cc",
1281 "src/safepoint-table.h", 1282 "src/safepoint-table.h",
1282 "src/signature.h", 1283 "src/signature.h",
1283 "src/simulator.h", 1284 "src/simulator.h",
1284 "src/small-pointer-list.h", 1285 "src/small-pointer-list.h",
1286 "src/snapshot/code-serializer.cc",
1287 "src/snapshot/code-serializer.h",
1288 "src/snapshot/deserializer.cc",
1289 "src/snapshot/deserializer.h",
1285 "src/snapshot/natives.h", 1290 "src/snapshot/natives.h",
1286 "src/snapshot/natives-common.cc", 1291 "src/snapshot/natives-common.cc",
1287 "src/snapshot/serialize.cc", 1292 "src/snapshot/partial-serializer.cc",
1288 "src/snapshot/serialize.h", 1293 "src/snapshot/partial-serializer.h",
1294 "src/snapshot/serializer.cc",
1295 "src/snapshot/serializer.h",
1296 "src/snapshot/serializer-common.cc",
1297 "src/snapshot/serializer-common.h",
1289 "src/snapshot/snapshot-common.cc", 1298 "src/snapshot/snapshot-common.cc",
1290 "src/snapshot/snapshot-source-sink.cc", 1299 "src/snapshot/snapshot-source-sink.cc",
1291 "src/snapshot/snapshot-source-sink.h", 1300 "src/snapshot/snapshot-source-sink.h",
1301 "src/snapshot/startup-serializer.cc",
1302 "src/snapshot/startup-serializer.h",
1292 "src/source-position.h", 1303 "src/source-position.h",
1293 "src/splay-tree.h", 1304 "src/splay-tree.h",
1294 "src/splay-tree-inl.h", 1305 "src/splay-tree-inl.h",
1295 "src/snapshot/snapshot.h", 1306 "src/snapshot/snapshot.h",
1296 "src/startup-data-util.h", 1307 "src/startup-data-util.h",
1297 "src/startup-data-util.cc", 1308 "src/startup-data-util.cc",
1298 "src/string-builder.cc", 1309 "src/string-builder.cc",
1299 "src/string-builder.h", 1310 "src/string-builder.h",
1300 "src/string-search.h", 1311 "src/string-search.h",
1301 "src/string-stream.cc", 1312 "src/string-stream.cc",
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
2020 2031
2021 configs -= [ "//build/config/compiler:chromium_code" ] 2032 configs -= [ "//build/config/compiler:chromium_code" ]
2022 configs += [ "//build/config/compiler:no_chromium_code" ] 2033 configs += [ "//build/config/compiler:no_chromium_code" ]
2023 configs += [ 2034 configs += [
2024 ":internal_config", 2035 ":internal_config",
2025 ":libplatform_config", 2036 ":libplatform_config",
2026 ":features", 2037 ":features",
2027 ":toolchain", 2038 ":toolchain",
2028 ] 2039 ]
2029 } 2040 }
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/snapshot/deserializer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698