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
3 # found in the LICENSE file.
5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni")
9 # Because standalone V8 builds are not supported, assume this is part of a
11 import("//build/module_args/v8.gni")
13 # TODO(jochen): These will need to be user-settable to support standalone V8
15 v8_deprecation_warnings = false
16 v8_enable_disassembler = false
17 v8_enable_gdbjit = false
18 v8_enable_handle_zapping = true
19 v8_enable_i18n_support = true
20 v8_enable_verify_heap = false
21 v8_interpreted_regexp = false
22 v8_object_print = false
23 v8_postmortem_support = false
24 v8_use_snapshot = true
25 v8_target_arch = target_cpu
26 v8_random_seed = "314159265"
27 v8_toolset_for_d8 = "host"
29 # The snapshot needs to be compiled for the host, but compiled with
30 # a toolchain that matches the bit-width of the target.
32 # TODO(GYP): For now we only support 32-bit little-endian target builds from an
33 # x64 Linux host. Eventually we need to support all of the host/target
34 # configurations v8 runs on.
35 if (host_cpu == "x64" && host_os == "linux") {
36 if (target_cpu == "arm" || target_cpu == "mipsel" || target_cpu == "x86") {
37 snapshot_toolchain = "//build/toolchain/linux:clang_x86"
38 } else if (target_cpu == "x64") {
39 snapshot_toolchain = "//build/toolchain/linux:clang_x64"
41 assert(false, "Need environment for this arch")
44 snapshot_toolchain = default_toolchain
47 ###############################################################################
50 config("internal_config") {
51 visibility = [ ":*" ] # Only targets in this file can depend on this.
53 include_dirs = [ "." ]
55 if (is_component_build) {
63 config("internal_config_base") {
64 visibility = [ ":*" ] # Only targets in this file can depend on this.
66 include_dirs = [ "." ]
69 # This config should only be applied to code using V8 and not any V8 code
71 config("external_config") {
72 if (is_component_build) {
78 include_dirs = [ "include" ]
82 visibility = [ ":*" ] # Only targets in this file can depend on this.
86 if (v8_enable_disassembler == true) {
87 defines += [ "ENABLE_DISASSEMBLER" ]
89 if (v8_enable_gdbjit == true) {
90 defines += [ "ENABLE_GDB_JIT_INTERFACE" ]
92 if (v8_object_print == true) {
93 defines += [ "OBJECT_PRINT" ]
95 if (v8_enable_verify_heap == true) {
96 defines += [ "VERIFY_HEAP" ]
98 if (v8_interpreted_regexp == true) {
99 defines += [ "V8_INTERPRETED_REGEXP" ]
101 if (v8_deprecation_warnings == true) {
102 defines += [ "V8_DEPRECATION_WARNINGS" ]
104 if (v8_enable_i18n_support == true) {
105 defines += [ "V8_I18N_SUPPORT" ]
107 if (v8_enable_handle_zapping == true) {
108 defines += [ "ENABLE_HANDLE_ZAPPING" ]
110 if (v8_use_external_startup_data == true) {
111 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
115 config("toolchain") {
116 visibility = [ ":*" ] # Only targets in this file can depend on this.
121 # TODO(jochen): Add support for arm subarchs, mips, mipsel, mips64el.
123 if (v8_target_arch == "arm") {
124 defines += [ "V8_TARGET_ARCH_ARM" ]
125 if (current_cpu == "arm") {
126 if (arm_version == 7) {
127 defines += [ "CAN_USE_ARMV7_INSTRUCTIONS" ]
129 if (arm_fpu == "vfpv3-d16") {
130 defines += [ "CAN_USE_VFP3_INSTRUCTIONS" ]
131 } else if (arm_fpu == "vfpv3") {
133 "CAN_USE_VFP3_INSTRUCTIONS",
134 "CAN_USE_VFP32DREGS",
136 } else if (arm_fpu == "neon") {
138 "CAN_USE_VFP3_INSTRUCTIONS",
139 "CAN_USE_VFP32DREGS",
144 # These defines ares used for the ARM simulator.
146 "CAN_USE_ARMV7_INSTRUCTIONS",
147 "CAN_USE_VFP3_INSTRUCTIONS",
148 "CAN_USE_VFP32DREGS",
149 "USE_EABI_HARDFLOAT=0",
153 # TODO(jochen): Add support for arm_test_noprobe.
155 if (v8_target_arch == "arm64") {
156 defines += [ "V8_TARGET_ARCH_ARM64" ]
158 if (v8_target_arch == "mipsel") {
159 defines += [ "V8_TARGET_ARCH_MIPS" ]
161 if (v8_target_arch == "mips64el") {
162 defines += [ "V8_TARGET_ARCH_MIPS64" ]
164 if (v8_target_arch == "x86") {
165 defines += [ "V8_TARGET_ARCH_IA32" ]
167 if (v8_target_arch == "x64") {
168 defines += [ "V8_TARGET_ARCH_X64" ]
171 defines += [ "WIN32" ]
172 # TODO(jochen): Support v8_enable_prof.
175 # TODO(jochen): Add support for compiling with simulators.
178 # TODO(jochen): Add support for different debug optimization levels.
180 "ENABLE_DISASSEMBLER",
190 ###############################################################################
195 visibility = [ ":*" ] # Only targets in this file can depend on this.
197 script = "tools/js2c.py"
199 # The script depends on this other script, this rule causes a rebuild if it
201 inputs = [ "tools/jsmin.py" ]
214 "src/third_party/fdlibm/fdlibm.js",
217 "src/arraybuffer.js",
219 "src/iterator-prototype.js",
221 "src/object-observe.js",
223 "src/weak-collection.js",
224 "src/collection-iterator.js",
228 "src/array-iterator.js",
229 "src/string-iterator.js",
231 "src/harmony-array.js",
232 "src/harmony-typedarray.js",
233 "src/debug/debug.js",
234 "src/debug/mirrors.js",
235 "src/debug/liveedit.js",
239 "$target_gen_dir/libraries.cc",
242 if (v8_enable_i18n_support) {
243 sources += [ "src/i18n.js" ]
247 rebase_path("$target_gen_dir/libraries.cc", root_build_dir),
249 ] + rebase_path(sources, root_build_dir)
251 if (v8_use_external_startup_data) {
252 outputs += [ "$target_gen_dir/libraries.bin" ]
255 rebase_path("$target_gen_dir/libraries.bin", root_build_dir),
260 action("js2c_code_stubs") {
261 visibility = [ ":*" ] # Only targets in this file can depend on this.
263 script = "tools/js2c.py"
265 # The script depends on this other script, this rule causes a rebuild if it
267 inputs = [ "tools/jsmin.py" ]
276 "$target_gen_dir/code-stub-libraries.cc",
280 rebase_path("$target_gen_dir/code-stub-libraries.cc",
283 ] + rebase_path(sources, root_build_dir)
285 if (v8_use_external_startup_data) {
286 outputs += [ "$target_gen_dir/libraries_code_stub.bin" ]
289 rebase_path("$target_gen_dir/libraries_code_stub.bin", root_build_dir),
294 action("js2c_experimental") {
295 visibility = [ ":*" ] # Only targets in this file can depend on this.
297 script = "tools/js2c.py"
299 # The script depends on this other script, this rule causes a rebuild if it
301 inputs = [ "tools/jsmin.py" ]
308 "src/harmony-atomics.js",
309 "src/harmony-array-includes.js",
310 "src/harmony-concat-spreadable.js",
311 "src/harmony-tostring.js",
312 "src/harmony-regexp.js",
313 "src/harmony-reflect.js",
314 "src/harmony-spread.js",
315 "src/harmony-object.js",
316 "src/harmony-object-observe.js",
317 "src/harmony-sharedarraybuffer.js",
318 "src/harmony-simd.js"
322 "$target_gen_dir/experimental-libraries.cc",
326 rebase_path("$target_gen_dir/experimental-libraries.cc",
329 ] + rebase_path(sources, root_build_dir)
331 if (v8_use_external_startup_data) {
332 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
335 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir),
340 action("js2c_extras") {
341 visibility = [ ":*" ] # Only targets in this file can depend on this.
343 script = "tools/js2c.py"
345 # The script depends on this other script, this rule causes a rebuild if it
347 inputs = [ "tools/jsmin.py" ]
349 sources = v8_extra_library_files
352 "$target_gen_dir/extras-libraries.cc",
356 rebase_path("$target_gen_dir/extras-libraries.cc",
359 ] + rebase_path(sources, root_build_dir)
361 if (v8_use_external_startup_data) {
362 outputs += [ "$target_gen_dir/libraries_extras.bin" ]
365 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir),
371 visibility = [ ":*" ] # Only targets in this file can depend on this.
373 script = "tools/js2c.py"
381 "$target_gen_dir/d8-js.cc",
384 args = rebase_path(outputs, root_build_dir) + [ "D8" ] +
385 rebase_path(inputs, root_build_dir)
388 if (v8_use_external_startup_data) {
389 action("natives_blob") {
390 visibility = [ ":*" ] # Only targets in this file can depend on this.
395 ":js2c_experimental",
400 "$target_gen_dir/libraries.bin",
401 "$target_gen_dir/libraries_code_stub.bin",
402 "$target_gen_dir/libraries_experimental.bin",
403 "$target_gen_dir/libraries_extras.bin",
407 "$root_out_dir/natives_blob.bin",
410 script = "tools/concatenate-files.py"
412 args = rebase_path(sources + outputs, root_build_dir)
416 action("postmortem-metadata") {
417 # Only targets in this file and the top-level visibility target can
424 script = "tools/gen-postmortem-metadata.py"
432 "$target_gen_dir/debug-support.cc",
435 args = rebase_path(outputs, root_build_dir) +
436 rebase_path(sources, root_build_dir)
439 action("run_mksnapshot") {
440 visibility = [ ":*" ] # Only targets in this file can depend on this.
443 ":mksnapshot($snapshot_toolchain)",
446 script = "tools/run.py"
449 "$target_gen_dir/snapshot.cc",
453 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)",
454 "root_out_dir") + "/mksnapshot",
456 "--log-snapshot-positions",
458 rebase_path("$target_gen_dir/snapshot.log", root_build_dir),
459 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir),
462 if (v8_random_seed != "0") {
469 if (v8_use_external_startup_data) {
470 outputs += [ "$root_out_dir/snapshot_blob.bin" ]
473 rebase_path("$root_out_dir/snapshot_blob.bin", root_build_dir),
478 ###############################################################################
479 # Source Sets (aka static libraries)
482 source_set("v8_nosnapshot") {
483 visibility = [ ":*" ] # Only targets in this file can depend on this.
488 ":js2c_experimental",
494 "$target_gen_dir/libraries.cc",
495 "$target_gen_dir/code-stub-libraries.cc",
496 "$target_gen_dir/experimental-libraries.cc",
497 "$target_gen_dir/extras-libraries.cc",
498 "src/snapshot/snapshot-empty.cc",
501 configs -= [ "//build/config/compiler:chromium_code" ]
502 configs += [ "//build/config/compiler:no_chromium_code" ]
510 source_set("v8_snapshot") {
511 # Only targets in this file and the top-level visibility target can
521 ":js2c_experimental",
526 # This should be public so downstream targets can declare the snapshot
527 # output file as their inputs.
532 "$target_gen_dir/libraries.cc",
533 "$target_gen_dir/code-stub-libraries.cc",
534 "$target_gen_dir/experimental-libraries.cc",
535 "$target_gen_dir/extras-libraries.cc",
536 "$target_gen_dir/snapshot.cc",
539 configs -= [ "//build/config/compiler:chromium_code" ]
540 configs += [ "//build/config/compiler:no_chromium_code" ]
548 if (v8_use_external_startup_data) {
549 source_set("v8_external_snapshot") {
550 visibility = [ ":*" ] # Only targets in this file can depend on this.
555 ":js2c_experimental",
565 "src/snapshot/natives-external.cc",
566 "src/snapshot/snapshot-external.cc",
569 configs -= [ "//build/config/compiler:chromium_code" ]
570 configs += [ "//build/config/compiler:no_chromium_code" ]
579 source_set("v8_base") {
580 visibility = [ ":*" ] # Only targets in this file can depend on this.
583 "include/v8-debug.h",
584 "include/v8-platform.h",
585 "include/v8-profiler.h",
586 "include/v8-testing.h",
588 "include/v8-version.h",
590 "include/v8config.h",
595 "src/allocation-site-scopes.cc",
596 "src/allocation-site-scopes.h",
597 "src/allocation-tracker.cc",
598 "src/allocation-tracker.h",
601 "src/api-natives.cc",
607 "src/assert-scope.h",
608 "src/assert-scope.cc",
609 "src/ast-literal-reindexer.cc",
610 "src/ast-literal-reindexer.h",
611 "src/ast-numbering.cc",
612 "src/ast-numbering.h",
613 "src/ast-value-factory.cc",
614 "src/ast-value-factory.h",
617 "src/background-parsing-task.cc",
618 "src/background-parsing-task.h",
619 "src/bailout-reason.cc",
620 "src/bailout-reason.h",
621 "src/basic-block-profiler.cc",
622 "src/basic-block-profiler.h",
623 "src/bignum-dtoa.cc",
629 "src/bootstrapper.cc",
630 "src/bootstrapper.h",
633 "src/bytecodes-irregexp.h",
634 "src/cancelable-task.cc",
635 "src/cancelable-task.h",
636 "src/cached-powers.cc",
637 "src/cached-powers.h",
638 "src/char-predicates.cc",
639 "src/char-predicates-inl.h",
640 "src/char-predicates.h",
642 "src/circular-queue-inl.h",
643 "src/circular-queue.h",
644 "src/code-factory.cc",
645 "src/code-factory.h",
648 "src/code-stubs-hydrogen.cc",
652 "src/compilation-cache.cc",
653 "src/compilation-cache.h",
654 "src/compilation-dependencies.cc",
655 "src/compilation-dependencies.h",
656 "src/compilation-statistics.cc",
657 "src/compilation-statistics.h",
658 "src/compiler/access-builder.cc",
659 "src/compiler/access-builder.h",
660 "src/compiler/all-nodes.cc",
661 "src/compiler/all-nodes.h",
662 "src/compiler/ast-graph-builder.cc",
663 "src/compiler/ast-graph-builder.h",
664 "src/compiler/ast-loop-assignment-analyzer.cc",
665 "src/compiler/ast-loop-assignment-analyzer.h",
666 "src/compiler/basic-block-instrumentor.cc",
667 "src/compiler/basic-block-instrumentor.h",
668 "src/compiler/change-lowering.cc",
669 "src/compiler/change-lowering.h",
670 "src/compiler/c-linkage.cc",
671 "src/compiler/coalesced-live-ranges.cc",
672 "src/compiler/coalesced-live-ranges.h",
673 "src/compiler/code-generator-impl.h",
674 "src/compiler/code-generator.cc",
675 "src/compiler/code-generator.h",
676 "src/compiler/common-node-cache.cc",
677 "src/compiler/common-node-cache.h",
678 "src/compiler/common-operator-reducer.cc",
679 "src/compiler/common-operator-reducer.h",
680 "src/compiler/common-operator.cc",
681 "src/compiler/common-operator.h",
682 "src/compiler/control-builders.cc",
683 "src/compiler/control-builders.h",
684 "src/compiler/control-equivalence.cc",
685 "src/compiler/control-equivalence.h",
686 "src/compiler/control-flow-optimizer.cc",
687 "src/compiler/control-flow-optimizer.h",
688 "src/compiler/dead-code-elimination.cc",
689 "src/compiler/dead-code-elimination.h",
690 "src/compiler/diamond.h",
691 "src/compiler/frame.h",
692 "src/compiler/frame-elider.cc",
693 "src/compiler/frame-elider.h",
694 "src/compiler/frame-states.cc",
695 "src/compiler/frame-states.h",
696 "src/compiler/gap-resolver.cc",
697 "src/compiler/gap-resolver.h",
698 "src/compiler/graph-reducer.cc",
699 "src/compiler/graph-reducer.h",
700 "src/compiler/graph-replay.cc",
701 "src/compiler/graph-replay.h",
702 "src/compiler/graph-trimmer.cc",
703 "src/compiler/graph-trimmer.h",
704 "src/compiler/graph-visualizer.cc",
705 "src/compiler/graph-visualizer.h",
706 "src/compiler/graph.cc",
707 "src/compiler/graph.h",
708 "src/compiler/greedy-allocator.cc",
709 "src/compiler/greedy-allocator.h",
710 "src/compiler/instruction-codes.h",
711 "src/compiler/instruction-selector-impl.h",
712 "src/compiler/instruction-selector.cc",
713 "src/compiler/instruction-selector.h",
714 "src/compiler/instruction.cc",
715 "src/compiler/instruction.h",
716 "src/compiler/interpreter-assembler.cc",
717 "src/compiler/interpreter-assembler.h",
718 "src/compiler/js-builtin-reducer.cc",
719 "src/compiler/js-builtin-reducer.h",
720 "src/compiler/js-context-relaxation.cc",
721 "src/compiler/js-context-relaxation.h",
722 "src/compiler/js-context-specialization.cc",
723 "src/compiler/js-context-specialization.h",
724 "src/compiler/js-frame-specialization.cc",
725 "src/compiler/js-frame-specialization.h",
726 "src/compiler/js-generic-lowering.cc",
727 "src/compiler/js-generic-lowering.h",
728 "src/compiler/js-graph.cc",
729 "src/compiler/js-graph.h",
730 "src/compiler/js-inlining.cc",
731 "src/compiler/js-inlining.h",
732 "src/compiler/js-intrinsic-lowering.cc",
733 "src/compiler/js-intrinsic-lowering.h",
734 "src/compiler/js-operator.cc",
735 "src/compiler/js-operator.h",
736 "src/compiler/js-type-feedback.cc",
737 "src/compiler/js-type-feedback.h",
738 "src/compiler/js-type-feedback-lowering.cc",
739 "src/compiler/js-type-feedback-lowering.h",
740 "src/compiler/js-typed-lowering.cc",
741 "src/compiler/js-typed-lowering.h",
742 "src/compiler/jump-threading.cc",
743 "src/compiler/jump-threading.h",
744 "src/compiler/linkage.cc",
745 "src/compiler/linkage.h",
746 "src/compiler/liveness-analyzer.cc",
747 "src/compiler/liveness-analyzer.h",
748 "src/compiler/load-elimination.cc",
749 "src/compiler/load-elimination.h",
750 "src/compiler/loop-peeling.cc",
751 "src/compiler/loop-analysis.cc",
752 "src/compiler/loop-analysis.h",
753 "src/compiler/machine-operator-reducer.cc",
754 "src/compiler/machine-operator-reducer.h",
755 "src/compiler/machine-operator.cc",
756 "src/compiler/machine-operator.h",
757 "src/compiler/machine-type.cc",
758 "src/compiler/machine-type.h",
759 "src/compiler/move-optimizer.cc",
760 "src/compiler/move-optimizer.h",
761 "src/compiler/node-aux-data.h",
762 "src/compiler/node-cache.cc",
763 "src/compiler/node-cache.h",
764 "src/compiler/node-marker.cc",
765 "src/compiler/node-marker.h",
766 "src/compiler/node-matchers.cc",
767 "src/compiler/node-matchers.h",
768 "src/compiler/node-properties.cc",
769 "src/compiler/node-properties.h",
770 "src/compiler/node.cc",
771 "src/compiler/node.h",
772 "src/compiler/opcodes.cc",
773 "src/compiler/opcodes.h",
774 "src/compiler/operator-properties.cc",
775 "src/compiler/operator-properties.h",
776 "src/compiler/operator.cc",
777 "src/compiler/operator.h",
778 "src/compiler/osr.cc",
779 "src/compiler/osr.h",
780 "src/compiler/pipeline.cc",
781 "src/compiler/pipeline.h",
782 "src/compiler/pipeline-statistics.cc",
783 "src/compiler/pipeline-statistics.h",
784 "src/compiler/preprocess-live-ranges.cc",
785 "src/compiler/preprocess-live-ranges.h",
786 "src/compiler/raw-machine-assembler.cc",
787 "src/compiler/raw-machine-assembler.h",
788 "src/compiler/register-allocator.cc",
789 "src/compiler/register-allocator.h",
790 "src/compiler/register-allocator-verifier.cc",
791 "src/compiler/register-allocator-verifier.h",
792 "src/compiler/register-configuration.cc",
793 "src/compiler/register-configuration.h",
794 "src/compiler/representation-change.h",
795 "src/compiler/schedule.cc",
796 "src/compiler/schedule.h",
797 "src/compiler/scheduler.cc",
798 "src/compiler/scheduler.h",
799 "src/compiler/select-lowering.cc",
800 "src/compiler/select-lowering.h",
801 "src/compiler/simplified-lowering.cc",
802 "src/compiler/simplified-lowering.h",
803 "src/compiler/simplified-operator-reducer.cc",
804 "src/compiler/simplified-operator-reducer.h",
805 "src/compiler/simplified-operator.cc",
806 "src/compiler/simplified-operator.h",
807 "src/compiler/source-position.cc",
808 "src/compiler/source-position.h",
809 "src/compiler/state-values-utils.cc",
810 "src/compiler/state-values-utils.h",
811 "src/compiler/tail-call-optimization.cc",
812 "src/compiler/tail-call-optimization.h",
813 "src/compiler/typer.cc",
814 "src/compiler/typer.h",
815 "src/compiler/value-numbering-reducer.cc",
816 "src/compiler/value-numbering-reducer.h",
817 "src/compiler/verifier.cc",
818 "src/compiler/verifier.h",
819 "src/compiler/zone-pool.cc",
820 "src/compiler/zone-pool.h",
823 "src/context-measure.cc",
824 "src/context-measure.h",
827 "src/conversions-inl.h",
828 "src/conversions.cc",
832 "src/cpu-profiler-inl.h",
833 "src/cpu-profiler.cc",
834 "src/cpu-profiler.h",
837 "src/dateparser-inl.h",
840 "src/debug/debug-evaluate.cc",
841 "src/debug/debug-evaluate.h",
842 "src/debug/debug-frames.cc",
843 "src/debug/debug-frames.h",
844 "src/debug/debug-scopes.cc",
845 "src/debug/debug-scopes.h",
846 "src/debug/debug.cc",
848 "src/debug/liveedit.cc",
849 "src/debug/liveedit.h",
850 "src/deoptimizer.cc",
853 "src/disassembler.cc",
854 "src/disassembler.h",
861 "src/elements-kind.cc",
862 "src/elements-kind.h",
867 "src/expression-classifier.h",
868 "src/extensions/externalize-string-extension.cc",
869 "src/extensions/externalize-string-extension.h",
870 "src/extensions/free-buffer-extension.cc",
871 "src/extensions/free-buffer-extension.h",
872 "src/extensions/gc-extension.cc",
873 "src/extensions/gc-extension.h",
874 "src/extensions/statistics-extension.cc",
875 "src/extensions/statistics-extension.h",
876 "src/extensions/trigger-failure-extension.cc",
877 "src/extensions/trigger-failure-extension.h",
883 "src/field-index-inl.h",
886 "src/flag-definitions.h",
892 "src/full-codegen/full-codegen.cc",
893 "src/full-codegen/full-codegen.h",
894 "src/func-name-inferrer.cc",
895 "src/func-name-inferrer.h",
896 "src/futex-emulation.cc",
897 "src/futex-emulation.h",
900 "src/global-handles.cc",
901 "src/global-handles.h",
907 "src/heap-profiler.cc",
908 "src/heap-profiler.h",
909 "src/heap-snapshot-generator-inl.h",
910 "src/heap-snapshot-generator.cc",
911 "src/heap-snapshot-generator.h",
912 "src/heap/gc-idle-time-handler.cc",
913 "src/heap/gc-idle-time-handler.h",
914 "src/heap/gc-tracer.cc",
915 "src/heap/gc-tracer.h",
916 "src/heap/heap-inl.h",
919 "src/heap/identity-map.cc",
920 "src/heap/identity-map.h",
921 "src/heap/incremental-marking.cc",
922 "src/heap/incremental-marking.h",
923 "src/heap/mark-compact-inl.h",
924 "src/heap/mark-compact.cc",
925 "src/heap/mark-compact.h",
926 "src/heap/memory-reducer.cc",
927 "src/heap/memory-reducer.h",
928 "src/heap/objects-visiting-inl.h",
929 "src/heap/objects-visiting.cc",
930 "src/heap/objects-visiting.h",
931 "src/heap/spaces-inl.h",
932 "src/heap/spaces.cc",
934 "src/heap/store-buffer-inl.h",
935 "src/heap/store-buffer.cc",
936 "src/heap/store-buffer.h",
937 "src/hydrogen-alias-analysis.h",
938 "src/hydrogen-bce.cc",
939 "src/hydrogen-bce.h",
940 "src/hydrogen-bch.cc",
941 "src/hydrogen-bch.h",
942 "src/hydrogen-canonicalize.cc",
943 "src/hydrogen-canonicalize.h",
944 "src/hydrogen-check-elimination.cc",
945 "src/hydrogen-check-elimination.h",
946 "src/hydrogen-dce.cc",
947 "src/hydrogen-dce.h",
948 "src/hydrogen-dehoist.cc",
949 "src/hydrogen-dehoist.h",
950 "src/hydrogen-environment-liveness.cc",
951 "src/hydrogen-environment-liveness.h",
952 "src/hydrogen-escape-analysis.cc",
953 "src/hydrogen-escape-analysis.h",
954 "src/hydrogen-flow-engine.h",
955 "src/hydrogen-instructions.cc",
956 "src/hydrogen-instructions.h",
959 "src/hydrogen-gvn.cc",
960 "src/hydrogen-gvn.h",
961 "src/hydrogen-infer-representation.cc",
962 "src/hydrogen-infer-representation.h",
963 "src/hydrogen-infer-types.cc",
964 "src/hydrogen-infer-types.h",
965 "src/hydrogen-load-elimination.cc",
966 "src/hydrogen-load-elimination.h",
967 "src/hydrogen-mark-deoptimize.cc",
968 "src/hydrogen-mark-deoptimize.h",
969 "src/hydrogen-mark-unreachable.cc",
970 "src/hydrogen-mark-unreachable.h",
971 "src/hydrogen-osr.cc",
972 "src/hydrogen-osr.h",
973 "src/hydrogen-range-analysis.cc",
974 "src/hydrogen-range-analysis.h",
975 "src/hydrogen-redundant-phi.cc",
976 "src/hydrogen-redundant-phi.h",
977 "src/hydrogen-removable-simulates.cc",
978 "src/hydrogen-removable-simulates.h",
979 "src/hydrogen-representation-changes.cc",
980 "src/hydrogen-representation-changes.h",
981 "src/hydrogen-sce.cc",
982 "src/hydrogen-sce.h",
983 "src/hydrogen-store-elimination.cc",
984 "src/hydrogen-store-elimination.h",
985 "src/hydrogen-types.cc",
986 "src/hydrogen-types.h",
987 "src/hydrogen-uint32-analysis.cc",
988 "src/hydrogen-uint32-analysis.h",
993 "src/ic/access-compiler.cc",
994 "src/ic/access-compiler.h",
995 "src/ic/call-optimization.cc",
996 "src/ic/call-optimization.h",
997 "src/ic/handler-compiler.cc",
998 "src/ic/handler-compiler.h",
1000 "src/ic/ic-state.cc",
1001 "src/ic/ic-state.h",
1004 "src/ic/ic-compiler.cc",
1005 "src/ic/ic-compiler.h",
1006 "src/ic/stub-cache.cc",
1007 "src/ic/stub-cache.h",
1008 "src/interface-descriptors.cc",
1009 "src/interface-descriptors.h",
1010 "src/interpreter-irregexp.cc",
1011 "src/interpreter-irregexp.h",
1012 "src/interpreter/bytecodes.cc",
1013 "src/interpreter/bytecodes.h",
1014 "src/interpreter/interpreter.cc",
1015 "src/interpreter/interpreter.h",
1018 "src/json-parser.h",
1019 "src/json-stringifier.h",
1020 "src/jsregexp-inl.h",
1023 "src/layout-descriptor-inl.h",
1024 "src/layout-descriptor.cc",
1025 "src/layout-descriptor.h",
1028 "src/lithium-allocator-inl.h",
1029 "src/lithium-allocator.cc",
1030 "src/lithium-allocator.h",
1031 "src/lithium-codegen.cc",
1032 "src/lithium-codegen.h",
1043 "src/macro-assembler.h",
1049 "src/objects-debug.cc",
1050 "src/objects-inl.h",
1051 "src/objects-printer.cc",
1054 "src/optimizing-compile-dispatcher.cc",
1055 "src/optimizing-compile-dispatcher.h",
1058 "src/pattern-rewriter.cc",
1061 "src/pending-compilation-error-handler.cc",
1062 "src/pending-compilation-error-handler.h",
1063 "src/preparse-data-format.h",
1064 "src/preparse-data.cc",
1065 "src/preparse-data.h",
1068 "src/prettyprinter.cc",
1069 "src/prettyprinter.h",
1070 "src/profile-generator-inl.h",
1071 "src/profile-generator.cc",
1072 "src/profile-generator.h",
1073 "src/property-details.h",
1077 "src/regexp-macro-assembler-irregexp-inl.h",
1078 "src/regexp-macro-assembler-irregexp.cc",
1079 "src/regexp-macro-assembler-irregexp.h",
1080 "src/regexp-macro-assembler-tracer.cc",
1081 "src/regexp-macro-assembler-tracer.h",
1082 "src/regexp-macro-assembler.cc",
1083 "src/regexp-macro-assembler.h",
1084 "src/regexp-stack.cc",
1085 "src/regexp-stack.h",
1088 "src/runtime-profiler.cc",
1089 "src/runtime-profiler.h",
1090 "src/runtime/runtime-array.cc",
1091 "src/runtime/runtime-atomics.cc",
1092 "src/runtime/runtime-classes.cc",
1093 "src/runtime/runtime-collections.cc",
1094 "src/runtime/runtime-compiler.cc",
1095 "src/runtime/runtime-date.cc",
1096 "src/runtime/runtime-debug.cc",
1097 "src/runtime/runtime-forin.cc",
1098 "src/runtime/runtime-function.cc",
1099 "src/runtime/runtime-futex.cc",
1100 "src/runtime/runtime-generator.cc",
1101 "src/runtime/runtime-i18n.cc",
1102 "src/runtime/runtime-internal.cc",
1103 "src/runtime/runtime-json.cc",
1104 "src/runtime/runtime-literals.cc",
1105 "src/runtime/runtime-liveedit.cc",
1106 "src/runtime/runtime-maths.cc",
1107 "src/runtime/runtime-numbers.cc",
1108 "src/runtime/runtime-object.cc",
1109 "src/runtime/runtime-observe.cc",
1110 "src/runtime/runtime-proxy.cc",
1111 "src/runtime/runtime-regexp.cc",
1112 "src/runtime/runtime-scopes.cc",
1113 "src/runtime/runtime-simd.cc",
1114 "src/runtime/runtime-strings.cc",
1115 "src/runtime/runtime-symbol.cc",
1116 "src/runtime/runtime-test.cc",
1117 "src/runtime/runtime-typedarray.cc",
1118 "src/runtime/runtime-uri.cc",
1119 "src/runtime/runtime-utils.h",
1120 "src/runtime/runtime.cc",
1121 "src/runtime/runtime.h",
1122 "src/safepoint-table.cc",
1123 "src/safepoint-table.h",
1126 "src/scanner-character-streams.cc",
1127 "src/scanner-character-streams.h",
1136 "src/small-pointer-list.h",
1137 "src/snapshot/natives.h",
1138 "src/snapshot/serialize.cc",
1139 "src/snapshot/serialize.h",
1140 "src/snapshot/snapshot-common.cc",
1141 "src/snapshot/snapshot-source-sink.cc",
1142 "src/snapshot/snapshot-source-sink.h",
1144 "src/splay-tree-inl.h",
1145 "src/snapshot/snapshot.h",
1146 "src/string-builder.cc",
1147 "src/string-builder.h",
1148 "src/string-search.cc",
1149 "src/string-search.h",
1150 "src/string-stream.cc",
1151 "src/string-stream.h",
1152 "src/strings-storage.cc",
1153 "src/strings-storage.h",
1158 "src/transitions-inl.h",
1159 "src/transitions.cc",
1160 "src/transitions.h",
1161 "src/type-feedback-vector-inl.h",
1162 "src/type-feedback-vector.cc",
1163 "src/type-feedback-vector.h",
1171 "src/unbound-queue-inl.h",
1172 "src/unbound-queue.h",
1173 "src/unicode-inl.h",
1176 "src/unicode-decoder.cc",
1177 "src/unicode-decoder.h",
1190 "src/vm-state-inl.h",
1194 "src/zone-allocator.h",
1195 "src/zone-containers.h",
1196 "src/third_party/fdlibm/fdlibm.cc",
1197 "src/third_party/fdlibm/fdlibm.h",
1200 if (v8_target_arch == "x86") {
1202 "src/ia32/assembler-ia32-inl.h",
1203 "src/ia32/assembler-ia32.cc",
1204 "src/ia32/assembler-ia32.h",
1205 "src/ia32/builtins-ia32.cc",
1206 "src/ia32/code-stubs-ia32.cc",
1207 "src/ia32/code-stubs-ia32.h",
1208 "src/ia32/codegen-ia32.cc",
1209 "src/ia32/codegen-ia32.h",
1210 "src/ia32/cpu-ia32.cc",
1211 "src/ia32/deoptimizer-ia32.cc",
1212 "src/ia32/disasm-ia32.cc",
1213 "src/ia32/frames-ia32.cc",
1214 "src/ia32/frames-ia32.h",
1215 "src/ia32/interface-descriptors-ia32.cc",
1216 "src/ia32/lithium-codegen-ia32.cc",
1217 "src/ia32/lithium-codegen-ia32.h",
1218 "src/ia32/lithium-gap-resolver-ia32.cc",
1219 "src/ia32/lithium-gap-resolver-ia32.h",
1220 "src/ia32/lithium-ia32.cc",
1221 "src/ia32/lithium-ia32.h",
1222 "src/ia32/macro-assembler-ia32.cc",
1223 "src/ia32/macro-assembler-ia32.h",
1224 "src/ia32/regexp-macro-assembler-ia32.cc",
1225 "src/ia32/regexp-macro-assembler-ia32.h",
1226 "src/compiler/ia32/code-generator-ia32.cc",
1227 "src/compiler/ia32/instruction-codes-ia32.h",
1228 "src/compiler/ia32/instruction-selector-ia32.cc",
1229 "src/debug/ia32/debug-ia32.cc",
1230 "src/full-codegen/ia32/full-codegen-ia32.cc",
1231 "src/ic/ia32/access-compiler-ia32.cc",
1232 "src/ic/ia32/handler-compiler-ia32.cc",
1233 "src/ic/ia32/ic-ia32.cc",
1234 "src/ic/ia32/ic-compiler-ia32.cc",
1235 "src/ic/ia32/stub-cache-ia32.cc",
1237 } else if (v8_target_arch == "x64") {
1239 "src/x64/assembler-x64-inl.h",
1240 "src/x64/assembler-x64.cc",
1241 "src/x64/assembler-x64.h",
1242 "src/x64/builtins-x64.cc",
1243 "src/x64/code-stubs-x64.cc",
1244 "src/x64/code-stubs-x64.h",
1245 "src/x64/codegen-x64.cc",
1246 "src/x64/codegen-x64.h",
1247 "src/x64/cpu-x64.cc",
1248 "src/x64/deoptimizer-x64.cc",
1249 "src/x64/disasm-x64.cc",
1250 "src/x64/frames-x64.cc",
1251 "src/x64/frames-x64.h",
1252 "src/x64/interface-descriptors-x64.cc",
1253 "src/x64/lithium-codegen-x64.cc",
1254 "src/x64/lithium-codegen-x64.h",
1255 "src/x64/lithium-gap-resolver-x64.cc",
1256 "src/x64/lithium-gap-resolver-x64.h",
1257 "src/x64/lithium-x64.cc",
1258 "src/x64/lithium-x64.h",
1259 "src/x64/macro-assembler-x64.cc",
1260 "src/x64/macro-assembler-x64.h",
1261 "src/x64/regexp-macro-assembler-x64.cc",
1262 "src/x64/regexp-macro-assembler-x64.h",
1263 "src/compiler/x64/code-generator-x64.cc",
1264 "src/compiler/x64/instruction-codes-x64.h",
1265 "src/compiler/x64/instruction-selector-x64.cc",
1266 "src/debug/x64/debug-x64.cc",
1267 "src/full-codegen/x64/full-codegen-x64.cc",
1268 "src/ic/x64/access-compiler-x64.cc",
1269 "src/ic/x64/handler-compiler-x64.cc",
1270 "src/ic/x64/ic-x64.cc",
1271 "src/ic/x64/ic-compiler-x64.cc",
1272 "src/ic/x64/stub-cache-x64.cc",
1274 } else if (v8_target_arch == "arm") {
1276 "src/arm/assembler-arm-inl.h",
1277 "src/arm/assembler-arm.cc",
1278 "src/arm/assembler-arm.h",
1279 "src/arm/builtins-arm.cc",
1280 "src/arm/code-stubs-arm.cc",
1281 "src/arm/code-stubs-arm.h",
1282 "src/arm/codegen-arm.cc",
1283 "src/arm/codegen-arm.h",
1284 "src/arm/constants-arm.h",
1285 "src/arm/constants-arm.cc",
1286 "src/arm/cpu-arm.cc",
1287 "src/arm/deoptimizer-arm.cc",
1288 "src/arm/disasm-arm.cc",
1289 "src/arm/frames-arm.cc",
1290 "src/arm/frames-arm.h",
1291 "src/arm/interface-descriptors-arm.cc",
1292 "src/arm/interface-descriptors-arm.h",
1293 "src/arm/lithium-arm.cc",
1294 "src/arm/lithium-arm.h",
1295 "src/arm/lithium-codegen-arm.cc",
1296 "src/arm/lithium-codegen-arm.h",
1297 "src/arm/lithium-gap-resolver-arm.cc",
1298 "src/arm/lithium-gap-resolver-arm.h",
1299 "src/arm/macro-assembler-arm.cc",
1300 "src/arm/macro-assembler-arm.h",
1301 "src/arm/regexp-macro-assembler-arm.cc",
1302 "src/arm/regexp-macro-assembler-arm.h",
1303 "src/arm/simulator-arm.cc",
1304 "src/arm/simulator-arm.h",
1305 "src/compiler/arm/code-generator-arm.cc",
1306 "src/compiler/arm/instruction-codes-arm.h",
1307 "src/compiler/arm/instruction-selector-arm.cc",
1308 "src/debug/arm/debug-arm.cc",
1309 "src/full-codegen/arm/full-codegen-arm.cc",
1310 "src/ic/arm/access-compiler-arm.cc",
1311 "src/ic/arm/handler-compiler-arm.cc",
1312 "src/ic/arm/ic-arm.cc",
1313 "src/ic/arm/ic-compiler-arm.cc",
1314 "src/ic/arm/stub-cache-arm.cc",
1316 } else if (v8_target_arch == "arm64") {
1318 "src/arm64/assembler-arm64.cc",
1319 "src/arm64/assembler-arm64.h",
1320 "src/arm64/assembler-arm64-inl.h",
1321 "src/arm64/builtins-arm64.cc",
1322 "src/arm64/codegen-arm64.cc",
1323 "src/arm64/codegen-arm64.h",
1324 "src/arm64/code-stubs-arm64.cc",
1325 "src/arm64/code-stubs-arm64.h",
1326 "src/arm64/constants-arm64.h",
1327 "src/arm64/cpu-arm64.cc",
1328 "src/arm64/decoder-arm64.cc",
1329 "src/arm64/decoder-arm64.h",
1330 "src/arm64/decoder-arm64-inl.h",
1331 "src/arm64/deoptimizer-arm64.cc",
1332 "src/arm64/disasm-arm64.cc",
1333 "src/arm64/disasm-arm64.h",
1334 "src/arm64/frames-arm64.cc",
1335 "src/arm64/frames-arm64.h",
1336 "src/arm64/instructions-arm64.cc",
1337 "src/arm64/instructions-arm64.h",
1338 "src/arm64/instrument-arm64.cc",
1339 "src/arm64/instrument-arm64.h",
1340 "src/arm64/interface-descriptors-arm64.cc",
1341 "src/arm64/interface-descriptors-arm64.h",
1342 "src/arm64/lithium-arm64.cc",
1343 "src/arm64/lithium-arm64.h",
1344 "src/arm64/lithium-codegen-arm64.cc",
1345 "src/arm64/lithium-codegen-arm64.h",
1346 "src/arm64/lithium-gap-resolver-arm64.cc",
1347 "src/arm64/lithium-gap-resolver-arm64.h",
1348 "src/arm64/macro-assembler-arm64.cc",
1349 "src/arm64/macro-assembler-arm64.h",
1350 "src/arm64/macro-assembler-arm64-inl.h",
1351 "src/arm64/regexp-macro-assembler-arm64.cc",
1352 "src/arm64/regexp-macro-assembler-arm64.h",
1353 "src/arm64/simulator-arm64.cc",
1354 "src/arm64/simulator-arm64.h",
1355 "src/arm64/utils-arm64.cc",
1356 "src/arm64/utils-arm64.h",
1357 "src/compiler/arm64/code-generator-arm64.cc",
1358 "src/compiler/arm64/instruction-codes-arm64.h",
1359 "src/compiler/arm64/instruction-selector-arm64.cc",
1360 "src/debug/arm64/debug-arm64.cc",
1361 "src/full-codegen/arm64/full-codegen-arm64.cc",
1362 "src/ic/arm64/access-compiler-arm64.cc",
1363 "src/ic/arm64/handler-compiler-arm64.cc",
1364 "src/ic/arm64/ic-arm64.cc",
1365 "src/ic/arm64/ic-compiler-arm64.cc",
1366 "src/ic/arm64/stub-cache-arm64.cc",
1368 } else if (v8_target_arch == "mipsel") {
1370 "src/mips/assembler-mips.cc",
1371 "src/mips/assembler-mips.h",
1372 "src/mips/assembler-mips-inl.h",
1373 "src/mips/builtins-mips.cc",
1374 "src/mips/codegen-mips.cc",
1375 "src/mips/codegen-mips.h",
1376 "src/mips/code-stubs-mips.cc",
1377 "src/mips/code-stubs-mips.h",
1378 "src/mips/constants-mips.cc",
1379 "src/mips/constants-mips.h",
1380 "src/mips/cpu-mips.cc",
1381 "src/mips/deoptimizer-mips.cc",
1382 "src/mips/disasm-mips.cc",
1383 "src/mips/frames-mips.cc",
1384 "src/mips/frames-mips.h",
1385 "src/mips/interface-descriptors-mips.cc",
1386 "src/mips/lithium-codegen-mips.cc",
1387 "src/mips/lithium-codegen-mips.h",
1388 "src/mips/lithium-gap-resolver-mips.cc",
1389 "src/mips/lithium-gap-resolver-mips.h",
1390 "src/mips/lithium-mips.cc",
1391 "src/mips/lithium-mips.h",
1392 "src/mips/macro-assembler-mips.cc",
1393 "src/mips/macro-assembler-mips.h",
1394 "src/mips/regexp-macro-assembler-mips.cc",
1395 "src/mips/regexp-macro-assembler-mips.h",
1396 "src/mips/simulator-mips.cc",
1397 "src/mips/simulator-mips.h",
1398 "src/compiler/mips/code-generator-mips.cc",
1399 "src/compiler/mips/instruction-codes-mips.h",
1400 "src/compiler/mips/instruction-selector-mips.cc",
1401 "src/debug/mips/debug-mips.cc",
1402 "src/full-codegen/mips/full-codegen-mips.cc",
1403 "src/ic/mips/access-compiler-mips.cc",
1404 "src/ic/mips/handler-compiler-mips.cc",
1405 "src/ic/mips/ic-mips.cc",
1406 "src/ic/mips/ic-compiler-mips.cc",
1407 "src/ic/mips/stub-cache-mips.cc",
1409 } else if (v8_target_arch == "mips64el") {
1411 "src/mips64/assembler-mips64.cc",
1412 "src/mips64/assembler-mips64.h",
1413 "src/mips64/assembler-mips64-inl.h",
1414 "src/mips64/builtins-mips64.cc",
1415 "src/mips64/codegen-mips64.cc",
1416 "src/mips64/codegen-mips64.h",
1417 "src/mips64/code-stubs-mips64.cc",
1418 "src/mips64/code-stubs-mips64.h",
1419 "src/mips64/constants-mips64.cc",
1420 "src/mips64/constants-mips64.h",
1421 "src/mips64/cpu-mips64.cc",
1422 "src/mips64/deoptimizer-mips64.cc",
1423 "src/mips64/disasm-mips64.cc",
1424 "src/mips64/frames-mips64.cc",
1425 "src/mips64/frames-mips64.h",
1426 "src/mips64/interface-descriptors-mips64.cc",
1427 "src/mips64/lithium-codegen-mips64.cc",
1428 "src/mips64/lithium-codegen-mips64.h",
1429 "src/mips64/lithium-gap-resolver-mips64.cc",
1430 "src/mips64/lithium-gap-resolver-mips64.h",
1431 "src/mips64/lithium-mips64.cc",
1432 "src/mips64/lithium-mips64.h",
1433 "src/mips64/macro-assembler-mips64.cc",
1434 "src/mips64/macro-assembler-mips64.h",
1435 "src/mips64/regexp-macro-assembler-mips64.cc",
1436 "src/mips64/regexp-macro-assembler-mips64.h",
1437 "src/mips64/simulator-mips64.cc",
1438 "src/mips64/simulator-mips64.h",
1439 "src/debug/mips64/debug-mips64.cc",
1440 "src/full-codegen/mips64/full-codegen-mips64.cc",
1441 "src/ic/mips64/access-compiler-mips64.cc",
1442 "src/ic/mips64/handler-compiler-mips64.cc",
1443 "src/ic/mips64/ic-mips64.cc",
1444 "src/ic/mips64/ic-compiler-mips64.cc",
1445 "src/ic/mips64/stub-cache-mips64.cc",
1449 configs -= [ "//build/config/compiler:chromium_code" ]
1450 configs += [ "//build/config/compiler:no_chromium_code" ]
1458 configs -= [ "//build/config/compiler:optimize" ]
1459 configs += [ "//build/config/compiler:optimize_max" ]
1468 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1469 cflags = [ "/wd4267" ]
1472 if (v8_enable_i18n_support) {
1473 deps += [ "//third_party/icu" ]
1475 deps += [ "//third_party/icu:icudata" ]
1478 # TODO(jochen): Add support for icu_use_data_file_flag
1479 defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE" ]
1487 if (v8_postmortem_support) {
1488 sources += [ "$target_gen_dir/debug-support.cc" ]
1489 deps += [ ":postmortem-metadata" ]
1493 source_set("v8_libbase") {
1494 visibility = [ ":*" ] # Only targets in this file can depend on this.
1497 "src/base/adapters.h",
1498 "src/base/atomicops.h",
1499 "src/base/atomicops_internals_arm64_gcc.h",
1500 "src/base/atomicops_internals_arm_gcc.h",
1501 "src/base/atomicops_internals_atomicword_compat.h",
1502 "src/base/atomicops_internals_mac.h",
1503 "src/base/atomicops_internals_mips_gcc.h",
1504 "src/base/atomicops_internals_mips64_gcc.h",
1505 "src/base/atomicops_internals_portable.h",
1506 "src/base/atomicops_internals_tsan.h",
1507 "src/base/atomicops_internals_x86_gcc.cc",
1508 "src/base/atomicops_internals_x86_gcc.h",
1509 "src/base/atomicops_internals_x86_msvc.h",
1512 "src/base/build_config.h",
1515 "src/base/division-by-constant.cc",
1516 "src/base/division-by-constant.h",
1518 "src/base/functional.cc",
1519 "src/base/functional.h",
1520 "src/base/iterator.h",
1521 "src/base/lazy-instance.h",
1522 "src/base/logging.cc",
1523 "src/base/logging.h",
1524 "src/base/macros.h",
1527 "src/base/platform/elapsed-timer.h",
1528 "src/base/platform/time.cc",
1529 "src/base/platform/time.h",
1530 "src/base/platform/condition-variable.cc",
1531 "src/base/platform/condition-variable.h",
1532 "src/base/platform/mutex.cc",
1533 "src/base/platform/mutex.h",
1534 "src/base/platform/platform.h",
1535 "src/base/platform/semaphore.cc",
1536 "src/base/platform/semaphore.h",
1537 "src/base/safe_conversions.h",
1538 "src/base/safe_conversions_impl.h",
1539 "src/base/safe_math.h",
1540 "src/base/safe_math_impl.h",
1541 "src/base/smart-pointers.h",
1542 "src/base/sys-info.cc",
1543 "src/base/sys-info.h",
1544 "src/base/utils/random-number-generator.cc",
1545 "src/base/utils/random-number-generator.h",
1548 configs -= [ "//build/config/compiler:chromium_code" ]
1549 configs += [ "//build/config/compiler:no_chromium_code" ]
1551 ":internal_config_base",
1557 configs -= [ "//build/config/compiler:optimize" ]
1558 configs += [ "//build/config/compiler:optimize_max" ]
1564 sources += [ "src/base/platform/platform-posix.cc" ]
1568 sources += [ "src/base/platform/platform-linux.cc" ]
1570 libs = [ "dl", "rt" ]
1571 } else if (is_android) {
1572 defines += [ "CAN_USE_VFP_INSTRUCTIONS" ]
1574 if (current_toolchain == host_toolchain) {
1575 libs = [ "dl", "rt" ]
1576 if (host_os == "mac") {
1577 sources += [ "src/base/platform/platform-macos.cc" ]
1579 sources += [ "src/base/platform/platform-linux.cc" ]
1582 sources += [ "src/base/platform/platform-linux.cc" ]
1584 } else if (is_mac) {
1585 sources += [ "src/base/platform/platform-macos.cc" ]
1586 } else if (is_win) {
1587 # TODO(jochen): Add support for cygwin.
1589 "src/base/platform/platform-win32.cc",
1590 "src/base/win32-headers.h",
1593 defines += [ "_CRT_RAND_S" ] # for rand_s()
1601 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
1604 source_set("v8_libplatform") {
1606 "include/libplatform/libplatform.h",
1607 "src/libplatform/default-platform.cc",
1608 "src/libplatform/default-platform.h",
1609 "src/libplatform/task-queue.cc",
1610 "src/libplatform/task-queue.h",
1611 "src/libplatform/worker-thread.cc",
1612 "src/libplatform/worker-thread.h",
1615 configs -= [ "//build/config/compiler:chromium_code" ]
1616 configs += [ "//build/config/compiler:no_chromium_code" ]
1618 ":internal_config_base",
1624 configs -= [ "//build/config/compiler:optimize" ]
1625 configs += [ "//build/config/compiler:optimize_max" ]
1633 ###############################################################################
1637 if (current_toolchain == snapshot_toolchain) {
1638 executable("mksnapshot") {
1639 visibility = [ ":*" ] # Only targets in this file can depend on this.
1642 "src/snapshot/mksnapshot.cc",
1645 configs -= [ "//build/config/compiler:chromium_code" ]
1646 configs += [ "//build/config/compiler:no_chromium_code" ]
1657 "//build/config/sanitizers:deps",
1662 ###############################################################################
1666 if (is_component_build) {
1669 "src/v8dll-main.cc",
1672 if (v8_use_snapshot && v8_use_external_startup_data) {
1677 ":v8_external_snapshot",
1679 } else if (v8_use_snapshot) {
1683 # v8_snapshot should be public so downstream targets can declare the
1684 # snapshot file as their input.
1689 assert(!v8_use_external_startup_data)
1696 configs -= [ "//build/config/compiler:chromium_code" ]
1697 configs += [ "//build/config/compiler:no_chromium_code" ]
1704 public_configs = [ ":external_config" ]
1707 if (is_android && current_toolchain != host_toolchain) {
1713 if (v8_use_snapshot && v8_use_external_startup_data) {
1716 ":v8_external_snapshot",
1718 } else if (v8_use_snapshot) {
1726 assert(!v8_use_external_startup_data)
1733 public_configs = [ ":external_config" ]
1737 if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") ||
1738 (current_toolchain != host_toolchain && v8_toolset_for_d8 == "target")) {
1743 "src/startup-data-util.h",
1744 "src/startup-data-util.cc",
1747 configs -= [ "//build/config/compiler:chromium_code" ]
1748 configs += [ "//build/config/compiler:no_chromium_code" ]
1750 # Note: don't use :internal_config here because this target will get
1751 # the :external_config applied to it by virtue of depending on :v8, and
1752 # you can't have both applied to the same target.
1753 ":internal_config_base",
1762 "//build/config/sanitizers:deps",
1765 # TODO(jochen): Add support for vtunejit.
1768 sources += [ "src/d8-posix.cc" ]
1769 } else if (is_win) {
1770 sources += [ "src/d8-windows.cc" ]
1773 if (!is_component_build) {
1775 "$target_gen_dir/d8-js.cc",
1778 if (v8_enable_i18n_support) {
1779 deps += [ "//third_party/icu" ]