Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index 5ef57016475eb14d95ccc27c2253edd9ecb1592b..a4f9f9f36130b36b079c40762904790e209422d6 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -187,7 +187,7 @@ config("toolchain") { |
} |
if (v8_target_arch == "s390") { |
defines += [ "V8_TARGET_ARCH_S390" ] |
- } |
+ } |
if (v8_target_arch == "s390x") { |
defines += [ |
"V8_TARGET_ARCH_S390", |
@@ -200,7 +200,7 @@ config("toolchain") { |
if (v8_target_arch == "x64") { |
defines += [ "V8_TARGET_ARCH_X64" ] |
} |
- |
+ |
if (is_win) { |
defines += [ "WIN32" ] |
# TODO(jochen): Support v8_enable_prof. |
@@ -232,8 +232,11 @@ action("js2c") { |
# The script depends on this other script, this rule causes a rebuild if it |
# changes. |
- inputs = [ "tools/jsmin.py" ] |
+ inputs = [ |
+ "tools/jsmin.py", |
+ ] |
+ # NOSORT |
sources = [ |
"src/js/macros.py", |
"src/messages.h", |
@@ -297,8 +300,11 @@ action("js2c_experimental") { |
# The script depends on this other script, this rule causes a rebuild if it |
# changes. |
- inputs = [ "tools/jsmin.py" ] |
+ inputs = [ |
+ "tools/jsmin.py", |
+ ] |
+ # NOSORT |
sources = [ |
"src/js/macros.py", |
"src/messages.h", |
@@ -311,7 +317,7 @@ action("js2c_experimental") { |
"src/js/harmony-species.js", |
"src/js/harmony-unicode-regexps.js", |
"src/js/harmony-string-padding.js", |
- "src/js/promise-extra.js" |
+ "src/js/promise-extra.js", |
] |
outputs = [ |
@@ -340,7 +346,9 @@ action("js2c_extras") { |
# The script depends on this other script, this rule causes a rebuild if it |
# changes. |
- inputs = [ "tools/jsmin.py" ] |
+ inputs = [ |
+ "tools/jsmin.py", |
+ ] |
sources = v8_extra_library_files |
@@ -349,8 +357,7 @@ action("js2c_extras") { |
] |
args = [ |
- rebase_path("$target_gen_dir/extras-libraries.cc", |
- root_build_dir), |
+ rebase_path("$target_gen_dir/extras-libraries.cc", root_build_dir), |
"EXTRAS", |
] + rebase_path(sources, root_build_dir) |
@@ -370,7 +377,9 @@ action("js2c_experimental_extras") { |
# The script depends on this other script, this rule causes a rebuild if it |
# changes. |
- inputs = [ "tools/jsmin.py" ] |
+ inputs = [ |
+ "tools/jsmin.py", |
+ ] |
sources = v8_experimental_extra_library_files |
@@ -388,7 +397,8 @@ action("js2c_experimental_extras") { |
outputs += [ "$target_gen_dir/libraries_experimental_extras.bin" ] |
args += [ |
"--startup_blob", |
- rebase_path("$target_gen_dir/libraries_experimental_extras.bin", root_build_dir), |
+ rebase_path("$target_gen_dir/libraries_experimental_extras.bin", |
+ root_build_dir), |
] |
} |
} |
@@ -398,6 +408,7 @@ action("d8_js2c") { |
script = "tools/js2c.py" |
+ # NOSORT |
inputs = [ |
"src/d8.js", |
"src/js/macros.py", |
@@ -431,15 +442,15 @@ if (v8_use_external_startup_data) { |
deps = [ |
":js2c", |
":js2c_experimental", |
- ":js2c_extras", |
":js2c_experimental_extras", |
+ ":js2c_extras", |
] |
sources = [ |
"$target_gen_dir/libraries.bin", |
"$target_gen_dir/libraries_experimental.bin", |
- "$target_gen_dir/libraries_extras.bin", |
"$target_gen_dir/libraries_experimental_extras.bin", |
+ "$target_gen_dir/libraries_extras.bin", |
] |
outputs = [ |
@@ -463,8 +474,8 @@ action("postmortem-metadata") { |
script = "tools/gen-postmortem-metadata.py" |
sources = [ |
- "src/objects.h", |
"src/objects-inl.h", |
Yang
2016/03/31 10:49:13
Reordering arguments causes this script to fail.
|
+ "src/objects.h", |
] |
outputs = [ |
@@ -525,16 +536,16 @@ source_set("v8_nosnapshot") { |
deps = [ |
":js2c", |
":js2c_experimental", |
- ":js2c_extras", |
":js2c_experimental_extras", |
+ ":js2c_extras", |
":v8_base", |
] |
sources = [ |
- "$target_gen_dir/libraries.cc", |
+ "$target_gen_dir/experimental-extras-libraries.cc", |
"$target_gen_dir/experimental-libraries.cc", |
"$target_gen_dir/extras-libraries.cc", |
- "$target_gen_dir/experimental-extras-libraries.cc", |
+ "$target_gen_dir/libraries.cc", |
"src/snapshot/snapshot-empty.cc", |
] |
@@ -558,8 +569,8 @@ source_set("v8_snapshot") { |
deps = [ |
":js2c", |
":js2c_experimental", |
- ":js2c_extras", |
":js2c_experimental_extras", |
+ ":js2c_extras", |
":v8_base", |
] |
public_deps = [ |
@@ -569,10 +580,10 @@ source_set("v8_snapshot") { |
] |
sources = [ |
- "$target_gen_dir/libraries.cc", |
+ "$target_gen_dir/experimental-extras-libraries.cc", |
"$target_gen_dir/experimental-libraries.cc", |
"$target_gen_dir/extras-libraries.cc", |
- "$target_gen_dir/experimental-extras-libraries.cc", |
+ "$target_gen_dir/libraries.cc", |
"$target_gen_dir/snapshot.cc", |
] |
@@ -592,8 +603,8 @@ if (v8_use_external_startup_data) { |
deps = [ |
":js2c", |
":js2c_experimental", |
- ":js2c_extras", |
":js2c_experimental_extras", |
+ ":js2c_extras", |
":v8_base", |
] |
public_deps = [ |
@@ -635,24 +646,24 @@ source_set("v8_base") { |
"src/accessors.h", |
"src/address-map.cc", |
"src/address-map.h", |
- "src/allocation.cc", |
- "src/allocation.h", |
"src/allocation-site-scopes.cc", |
"src/allocation-site-scopes.h", |
- "src/api.cc", |
- "src/api.h", |
+ "src/allocation.cc", |
+ "src/allocation.h", |
"src/api-arguments.cc", |
"src/api-arguments.h", |
"src/api-experimental.cc", |
"src/api-experimental.h", |
"src/api-natives.cc", |
"src/api-natives.h", |
+ "src/api.cc", |
+ "src/api.h", |
"src/arguments.cc", |
"src/arguments.h", |
"src/assembler.cc", |
"src/assembler.h", |
- "src/assert-scope.h", |
"src/assert-scope.cc", |
+ "src/assert-scope.h", |
"src/ast/ast-expression-rewriter.cc", |
"src/ast/ast-expression-rewriter.h", |
"src/ast/ast-expression-visitor.cc", |
@@ -692,19 +703,19 @@ source_set("v8_base") { |
"src/bootstrapper.h", |
"src/builtins.cc", |
"src/builtins.h", |
- "src/cancelable-task.cc", |
- "src/cancelable-task.h", |
"src/cached-powers.cc", |
"src/cached-powers.h", |
- "src/char-predicates.cc", |
+ "src/cancelable-task.cc", |
+ "src/cancelable-task.h", |
"src/char-predicates-inl.h", |
+ "src/char-predicates.cc", |
"src/char-predicates.h", |
"src/checks.h", |
"src/code-factory.cc", |
"src/code-factory.h", |
+ "src/code-stubs-hydrogen.cc", |
"src/code-stubs.cc", |
"src/code-stubs.h", |
- "src/code-stubs-hydrogen.cc", |
"src/codegen.cc", |
"src/codegen.h", |
"src/collector.h", |
@@ -714,6 +725,8 @@ source_set("v8_base") { |
"src/compilation-dependencies.h", |
"src/compilation-statistics.cc", |
"src/compilation-statistics.h", |
+ "src/compiler.cc", |
+ "src/compiler.h", |
"src/compiler/access-builder.cc", |
"src/compiler/access-builder.h", |
"src/compiler/access-info.cc", |
@@ -732,9 +745,9 @@ source_set("v8_base") { |
"src/compiler/bytecode-branch-analysis.h", |
"src/compiler/bytecode-graph-builder.cc", |
"src/compiler/bytecode-graph-builder.h", |
+ "src/compiler/c-linkage.cc", |
"src/compiler/change-lowering.cc", |
"src/compiler/change-lowering.h", |
- "src/compiler/c-linkage.cc", |
"src/compiler/coalesced-live-ranges.cc", |
"src/compiler/coalesced-live-ranges.h", |
"src/compiler/code-generator-impl.h", |
@@ -757,16 +770,16 @@ source_set("v8_base") { |
"src/compiler/dead-code-elimination.cc", |
"src/compiler/dead-code-elimination.h", |
"src/compiler/diamond.h", |
- "src/compiler/escape-analysis.cc", |
- "src/compiler/escape-analysis.h", |
"src/compiler/escape-analysis-reducer.cc", |
"src/compiler/escape-analysis-reducer.h", |
- "src/compiler/frame.cc", |
- "src/compiler/frame.h", |
+ "src/compiler/escape-analysis.cc", |
+ "src/compiler/escape-analysis.h", |
"src/compiler/frame-elider.cc", |
"src/compiler/frame-elider.h", |
"src/compiler/frame-states.cc", |
"src/compiler/frame-states.h", |
+ "src/compiler/frame.cc", |
+ "src/compiler/frame.h", |
"src/compiler/gap-resolver.cc", |
"src/compiler/gap-resolver.h", |
"src/compiler/graph-reducer.cc", |
@@ -807,10 +820,10 @@ source_set("v8_base") { |
"src/compiler/js-global-object-specialization.h", |
"src/compiler/js-graph.cc", |
"src/compiler/js-graph.h", |
- "src/compiler/js-inlining.cc", |
- "src/compiler/js-inlining.h", |
"src/compiler/js-inlining-heuristic.cc", |
"src/compiler/js-inlining-heuristic.h", |
+ "src/compiler/js-inlining.cc", |
+ "src/compiler/js-inlining.h", |
"src/compiler/js-intrinsic-lowering.cc", |
"src/compiler/js-intrinsic-lowering.h", |
"src/compiler/js-native-context-specialization.cc", |
@@ -829,9 +842,9 @@ source_set("v8_base") { |
"src/compiler/liveness-analyzer.h", |
"src/compiler/load-elimination.cc", |
"src/compiler/load-elimination.h", |
- "src/compiler/loop-peeling.cc", |
"src/compiler/loop-analysis.cc", |
"src/compiler/loop-analysis.h", |
+ "src/compiler/loop-peeling.cc", |
"src/compiler/machine-operator-reducer.cc", |
"src/compiler/machine-operator-reducer.h", |
"src/compiler/machine-operator.cc", |
@@ -857,16 +870,16 @@ source_set("v8_base") { |
"src/compiler/operator.h", |
"src/compiler/osr.cc", |
"src/compiler/osr.h", |
- "src/compiler/pipeline.cc", |
- "src/compiler/pipeline.h", |
"src/compiler/pipeline-statistics.cc", |
"src/compiler/pipeline-statistics.h", |
+ "src/compiler/pipeline.cc", |
+ "src/compiler/pipeline.h", |
"src/compiler/raw-machine-assembler.cc", |
"src/compiler/raw-machine-assembler.h", |
- "src/compiler/register-allocator.cc", |
- "src/compiler/register-allocator.h", |
"src/compiler/register-allocator-verifier.cc", |
"src/compiler/register-allocator-verifier.h", |
+ "src/compiler/register-allocator.cc", |
+ "src/compiler/register-allocator.h", |
"src/compiler/representation-change.cc", |
"src/compiler/representation-change.h", |
"src/compiler/schedule.cc", |
@@ -902,8 +915,6 @@ source_set("v8_base") { |
"src/compiler/wasm-linkage.cc", |
"src/compiler/zone-pool.cc", |
"src/compiler/zone-pool.h", |
- "src/compiler.cc", |
- "src/compiler.h", |
"src/context-measure.cc", |
"src/context-measure.h", |
"src/contexts-inl.h", |
@@ -1026,8 +1037,8 @@ source_set("v8_base") { |
"src/fast-accessor-assembler.h", |
"src/fast-dtoa.cc", |
"src/fast-dtoa.h", |
- "src/field-index.h", |
"src/field-index-inl.h", |
+ "src/field-index.h", |
"src/field-type.cc", |
"src/field-type.h", |
"src/fixed-dtoa.cc", |
@@ -1078,8 +1089,8 @@ source_set("v8_base") { |
"src/heap/page-parallel-job.h", |
"src/heap/remembered-set.cc", |
"src/heap/remembered-set.h", |
- "src/heap/scavenge-job.h", |
"src/heap/scavenge-job.cc", |
+ "src/heap/scavenge-job.h", |
"src/heap/scavenger-inl.h", |
"src/heap/scavenger.cc", |
"src/heap/scavenger.h", |
@@ -1092,29 +1103,27 @@ source_set("v8_base") { |
"src/heap/store-buffer.h", |
"src/i18n.cc", |
"src/i18n.h", |
- "src/icu_util.cc", |
- "src/icu_util.h", |
"src/ic/access-compiler.cc", |
"src/ic/access-compiler.h", |
"src/ic/call-optimization.cc", |
"src/ic/call-optimization.h", |
"src/ic/handler-compiler.cc", |
"src/ic/handler-compiler.h", |
+ "src/ic/ic-compiler.cc", |
+ "src/ic/ic-compiler.h", |
"src/ic/ic-inl.h", |
"src/ic/ic-state.cc", |
"src/ic/ic-state.h", |
"src/ic/ic.cc", |
"src/ic/ic.h", |
- "src/ic/ic-compiler.cc", |
- "src/ic/ic-compiler.h", |
"src/ic/stub-cache.cc", |
"src/ic/stub-cache.h", |
+ "src/icu_util.cc", |
+ "src/icu_util.h", |
"src/identity-map.cc", |
"src/identity-map.h", |
"src/interface-descriptors.cc", |
"src/interface-descriptors.h", |
- "src/interpreter/bytecodes.cc", |
- "src/interpreter/bytecodes.h", |
"src/interpreter/bytecode-array-builder.cc", |
"src/interpreter/bytecode-array-builder.h", |
"src/interpreter/bytecode-array-iterator.cc", |
@@ -1124,18 +1133,20 @@ source_set("v8_base") { |
"src/interpreter/bytecode-register-allocator.cc", |
"src/interpreter/bytecode-register-allocator.h", |
"src/interpreter/bytecode-traits.h", |
+ "src/interpreter/bytecodes.cc", |
+ "src/interpreter/bytecodes.h", |
"src/interpreter/constant-array-builder.cc", |
"src/interpreter/constant-array-builder.h", |
"src/interpreter/control-flow-builders.cc", |
"src/interpreter/control-flow-builders.h", |
"src/interpreter/handler-table-builder.cc", |
"src/interpreter/handler-table-builder.h", |
- "src/interpreter/interpreter.cc", |
- "src/interpreter/interpreter.h", |
"src/interpreter/interpreter-assembler.cc", |
"src/interpreter/interpreter-assembler.h", |
"src/interpreter/interpreter-intrinsics.cc", |
"src/interpreter/interpreter-intrinsics.h", |
+ "src/interpreter/interpreter.cc", |
+ "src/interpreter/interpreter.h", |
"src/interpreter/source-position-table.cc", |
"src/interpreter/source-position-table.h", |
"src/isolate-inl.h", |
@@ -1143,8 +1154,8 @@ source_set("v8_base") { |
"src/isolate.h", |
"src/json-parser.h", |
"src/json-stringifier.h", |
- "src/keys.h", |
"src/keys.cc", |
+ "src/keys.h", |
"src/layout-descriptor-inl.h", |
"src/layout-descriptor.cc", |
"src/layout-descriptor.h", |
@@ -1157,9 +1168,9 @@ source_set("v8_base") { |
"src/log.h", |
"src/lookup.cc", |
"src/lookup.h", |
- "src/macro-assembler.h", |
"src/machine-type.cc", |
"src/machine-type.h", |
+ "src/macro-assembler.h", |
"src/messages.cc", |
"src/messages.h", |
"src/msan.h", |
@@ -1295,25 +1306,25 @@ source_set("v8_base") { |
"src/snapshot/code-serializer.h", |
"src/snapshot/deserializer.cc", |
"src/snapshot/deserializer.h", |
- "src/snapshot/natives.h", |
"src/snapshot/natives-common.cc", |
+ "src/snapshot/natives.h", |
"src/snapshot/partial-serializer.cc", |
"src/snapshot/partial-serializer.h", |
- "src/snapshot/serializer.cc", |
- "src/snapshot/serializer.h", |
"src/snapshot/serializer-common.cc", |
"src/snapshot/serializer-common.h", |
+ "src/snapshot/serializer.cc", |
+ "src/snapshot/serializer.h", |
"src/snapshot/snapshot-common.cc", |
"src/snapshot/snapshot-source-sink.cc", |
"src/snapshot/snapshot-source-sink.h", |
+ "src/snapshot/snapshot.h", |
"src/snapshot/startup-serializer.cc", |
"src/snapshot/startup-serializer.h", |
"src/source-position.h", |
- "src/splay-tree.h", |
"src/splay-tree-inl.h", |
- "src/snapshot/snapshot.h", |
- "src/startup-data-util.h", |
+ "src/splay-tree.h", |
"src/startup-data-util.cc", |
+ "src/startup-data-util.h", |
"src/string-builder.cc", |
"src/string-builder.h", |
"src/string-search.h", |
@@ -1321,6 +1332,8 @@ source_set("v8_base") { |
"src/string-stream.h", |
"src/strtod.cc", |
"src/strtod.h", |
+ "src/third_party/fdlibm/fdlibm.cc", |
+ "src/third_party/fdlibm/fdlibm.h", |
"src/tracing/trace-event.cc", |
"src/tracing/trace-event.h", |
"src/transitions-inl.h", |
@@ -1339,13 +1352,13 @@ source_set("v8_base") { |
"src/typing-asm.h", |
"src/typing-reset.cc", |
"src/typing-reset.h", |
- "src/unicode-inl.h", |
- "src/unicode.cc", |
- "src/unicode.h", |
"src/unicode-cache-inl.h", |
"src/unicode-cache.h", |
"src/unicode-decoder.cc", |
"src/unicode-decoder.h", |
+ "src/unicode-inl.h", |
+ "src/unicode.cc", |
+ "src/unicode.h", |
"src/utils-inl.h", |
"src/utils.cc", |
"src/utils.h", |
@@ -1377,26 +1390,24 @@ source_set("v8_base") { |
"src/wasm/wasm-opcodes.h", |
"src/wasm/wasm-result.cc", |
"src/wasm/wasm-result.h", |
- "src/zone.cc", |
- "src/zone.h", |
"src/zone-allocator.h", |
"src/zone-containers.h", |
- "src/third_party/fdlibm/fdlibm.cc", |
- "src/third_party/fdlibm/fdlibm.h", |
+ "src/zone.cc", |
+ "src/zone.h", |
] |
if (v8_target_arch == "x86") { |
sources += [ |
+ "src/compiler/ia32/code-generator-ia32.cc", |
+ "src/compiler/ia32/instruction-codes-ia32.h", |
+ "src/compiler/ia32/instruction-scheduler-ia32.cc", |
+ "src/compiler/ia32/instruction-selector-ia32.cc", |
"src/crankshaft/ia32/lithium-codegen-ia32.cc", |
"src/crankshaft/ia32/lithium-codegen-ia32.h", |
"src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", |
"src/crankshaft/ia32/lithium-gap-resolver-ia32.h", |
"src/crankshaft/ia32/lithium-ia32.cc", |
"src/crankshaft/ia32/lithium-ia32.h", |
- "src/compiler/ia32/code-generator-ia32.cc", |
- "src/compiler/ia32/instruction-codes-ia32.h", |
- "src/compiler/ia32/instruction-scheduler-ia32.cc", |
- "src/compiler/ia32/instruction-selector-ia32.cc", |
"src/debug/ia32/debug-ia32.cc", |
"src/full-codegen/ia32/full-codegen-ia32.cc", |
"src/ia32/assembler-ia32-inl.h", |
@@ -1417,8 +1428,8 @@ source_set("v8_base") { |
"src/ia32/macro-assembler-ia32.h", |
"src/ic/ia32/access-compiler-ia32.cc", |
"src/ic/ia32/handler-compiler-ia32.cc", |
- "src/ic/ia32/ic-ia32.cc", |
"src/ic/ia32/ic-compiler-ia32.cc", |
+ "src/ic/ia32/ic-ia32.cc", |
"src/ic/ia32/stub-cache-ia32.cc", |
"src/regexp/ia32/regexp-macro-assembler-ia32.cc", |
"src/regexp/ia32/regexp-macro-assembler-ia32.h", |
@@ -1439,8 +1450,8 @@ source_set("v8_base") { |
"src/full-codegen/x64/full-codegen-x64.cc", |
"src/ic/x64/access-compiler-x64.cc", |
"src/ic/x64/handler-compiler-x64.cc", |
- "src/ic/x64/ic-x64.cc", |
"src/ic/x64/ic-compiler-x64.cc", |
+ "src/ic/x64/ic-x64.cc", |
"src/ic/x64/stub-cache-x64.cc", |
"src/regexp/x64/regexp-macro-assembler-x64.cc", |
"src/regexp/x64/regexp-macro-assembler-x64.h", |
@@ -1471,8 +1482,8 @@ source_set("v8_base") { |
"src/arm/code-stubs-arm.h", |
"src/arm/codegen-arm.cc", |
"src/arm/codegen-arm.h", |
- "src/arm/constants-arm.h", |
"src/arm/constants-arm.cc", |
+ "src/arm/constants-arm.h", |
"src/arm/cpu-arm.cc", |
"src/arm/deoptimizer-arm.cc", |
"src/arm/disasm-arm.cc", |
@@ -1506,19 +1517,19 @@ source_set("v8_base") { |
] |
} else if (v8_target_arch == "arm64") { |
sources += [ |
+ "src/arm64/assembler-arm64-inl.h", |
"src/arm64/assembler-arm64.cc", |
"src/arm64/assembler-arm64.h", |
- "src/arm64/assembler-arm64-inl.h", |
"src/arm64/builtins-arm64.cc", |
- "src/arm64/codegen-arm64.cc", |
- "src/arm64/codegen-arm64.h", |
"src/arm64/code-stubs-arm64.cc", |
"src/arm64/code-stubs-arm64.h", |
+ "src/arm64/codegen-arm64.cc", |
+ "src/arm64/codegen-arm64.h", |
"src/arm64/constants-arm64.h", |
"src/arm64/cpu-arm64.cc", |
+ "src/arm64/decoder-arm64-inl.h", |
"src/arm64/decoder-arm64.cc", |
"src/arm64/decoder-arm64.h", |
- "src/arm64/decoder-arm64-inl.h", |
"src/arm64/deoptimizer-arm64.cc", |
"src/arm64/disasm-arm64.cc", |
"src/arm64/disasm-arm64.h", |
@@ -1530,9 +1541,9 @@ source_set("v8_base") { |
"src/arm64/instrument-arm64.h", |
"src/arm64/interface-descriptors-arm64.cc", |
"src/arm64/interface-descriptors-arm64.h", |
+ "src/arm64/macro-assembler-arm64-inl.h", |
"src/arm64/macro-assembler-arm64.cc", |
"src/arm64/macro-assembler-arm64.h", |
- "src/arm64/macro-assembler-arm64-inl.h", |
"src/arm64/simulator-arm64.cc", |
"src/arm64/simulator-arm64.h", |
"src/arm64/utils-arm64.cc", |
@@ -1541,9 +1552,9 @@ source_set("v8_base") { |
"src/compiler/arm64/instruction-codes-arm64.h", |
"src/compiler/arm64/instruction-scheduler-arm64.cc", |
"src/compiler/arm64/instruction-selector-arm64.cc", |
+ "src/crankshaft/arm64/delayed-masm-arm64-inl.h", |
"src/crankshaft/arm64/delayed-masm-arm64.cc", |
"src/crankshaft/arm64/delayed-masm-arm64.h", |
- "src/crankshaft/arm64/delayed-masm-arm64-inl.h", |
"src/crankshaft/arm64/lithium-arm64.cc", |
"src/crankshaft/arm64/lithium-arm64.h", |
"src/crankshaft/arm64/lithium-codegen-arm64.cc", |
@@ -1576,17 +1587,17 @@ source_set("v8_base") { |
"src/full-codegen/mips/full-codegen-mips.cc", |
"src/ic/mips/access-compiler-mips.cc", |
"src/ic/mips/handler-compiler-mips.cc", |
- "src/ic/mips/ic-mips.cc", |
"src/ic/mips/ic-compiler-mips.cc", |
+ "src/ic/mips/ic-mips.cc", |
"src/ic/mips/stub-cache-mips.cc", |
+ "src/mips/assembler-mips-inl.h", |
"src/mips/assembler-mips.cc", |
"src/mips/assembler-mips.h", |
- "src/mips/assembler-mips-inl.h", |
"src/mips/builtins-mips.cc", |
- "src/mips/codegen-mips.cc", |
- "src/mips/codegen-mips.h", |
"src/mips/code-stubs-mips.cc", |
"src/mips/code-stubs-mips.h", |
+ "src/mips/codegen-mips.cc", |
+ "src/mips/codegen-mips.h", |
"src/mips/constants-mips.cc", |
"src/mips/constants-mips.h", |
"src/mips/cpu-mips.cc", |
@@ -1618,17 +1629,17 @@ source_set("v8_base") { |
"src/full-codegen/mips64/full-codegen-mips64.cc", |
"src/ic/mips64/access-compiler-mips64.cc", |
"src/ic/mips64/handler-compiler-mips64.cc", |
- "src/ic/mips64/ic-mips64.cc", |
"src/ic/mips64/ic-compiler-mips64.cc", |
+ "src/ic/mips64/ic-mips64.cc", |
"src/ic/mips64/stub-cache-mips64.cc", |
+ "src/mips64/assembler-mips64-inl.h", |
"src/mips64/assembler-mips64.cc", |
"src/mips64/assembler-mips64.h", |
- "src/mips64/assembler-mips64-inl.h", |
"src/mips64/builtins-mips64.cc", |
- "src/mips64/codegen-mips64.cc", |
- "src/mips64/codegen-mips64.h", |
"src/mips64/code-stubs-mips64.cc", |
"src/mips64/code-stubs-mips64.h", |
+ "src/mips64/codegen-mips64.cc", |
+ "src/mips64/codegen-mips64.h", |
"src/mips64/constants-mips64.cc", |
"src/mips64/constants-mips64.h", |
"src/mips64/cpu-mips64.cc", |
@@ -1665,14 +1676,14 @@ source_set("v8_base") { |
"src/ic/s390/stub-cache-s390.cc", |
"src/regexp/s390/regexp-macro-assembler-s390.cc", |
"src/regexp/s390/regexp-macro-assembler-s390.h", |
+ "src/s390/assembler-s390-inl.h", |
"src/s390/assembler-s390.cc", |
"src/s390/assembler-s390.h", |
- "src/s390/assembler-s390-inl.h", |
"src/s390/builtins-s390.cc", |
- "src/s390/codegen-s390.cc", |
- "src/s390/codegen-s390.h", |
"src/s390/code-stubs-s390.cc", |
"src/s390/code-stubs-s390.h", |
+ "src/s390/codegen-s390.cc", |
+ "src/s390/codegen-s390.h", |
"src/s390/constants-s390.cc", |
"src/s390/constants-s390.h", |
"src/s390/cpu-s390.cc", |
@@ -1742,8 +1753,8 @@ source_set("v8_libbase") { |
"src/base/atomicops_internals_arm_gcc.h", |
"src/base/atomicops_internals_atomicword_compat.h", |
"src/base/atomicops_internals_mac.h", |
- "src/base/atomicops_internals_mips_gcc.h", |
"src/base/atomicops_internals_mips64_gcc.h", |
+ "src/base/atomicops_internals_mips_gcc.h", |
"src/base/atomicops_internals_portable.h", |
"src/base/atomicops_internals_s390_gcc.h", |
"src/base/atomicops_internals_tsan.h", |
@@ -1767,16 +1778,16 @@ source_set("v8_libbase") { |
"src/base/macros.h", |
"src/base/once.cc", |
"src/base/once.h", |
- "src/base/platform/elapsed-timer.h", |
- "src/base/platform/time.cc", |
- "src/base/platform/time.h", |
"src/base/platform/condition-variable.cc", |
"src/base/platform/condition-variable.h", |
+ "src/base/platform/elapsed-timer.h", |
"src/base/platform/mutex.cc", |
"src/base/platform/mutex.h", |
"src/base/platform/platform.h", |
"src/base/platform/semaphore.cc", |
"src/base/platform/semaphore.h", |
+ "src/base/platform/time.cc", |
+ "src/base/platform/time.h", |
"src/base/safe_conversions.h", |
"src/base/safe_conversions_impl.h", |
"src/base/safe_math.h", |
@@ -1810,10 +1821,16 @@ source_set("v8_libbase") { |
if (is_linux) { |
sources += [ "src/base/platform/platform-linux.cc" ] |
- libs = [ "dl", "rt" ] |
+ libs = [ |
+ "dl", |
+ "rt", |
+ ] |
} else if (is_android) { |
if (current_toolchain == host_toolchain) { |
- libs = [ "dl", "rt" ] |
+ libs = [ |
+ "dl", |
+ "rt", |
+ ] |
if (host_os == "mac") { |
sources += [ "src/base/platform/platform-macos.cc" ] |
} else { |
@@ -2000,9 +2017,7 @@ if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") || |
} |
if (!is_component_build) { |
- sources += [ |
- "$target_gen_dir/d8-js.cc", |
- ] |
+ sources += [ "$target_gen_dir/d8-js.cc" ] |
} |
if (v8_enable_i18n_support) { |
deps += [ "//third_party/icu" ] |