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",
230 "src/debug-debugger.js",
231 "src/mirror-debugger.js",
232 "src/liveedit-debugger.js",
234 "src/harmony-array.js",
235 "src/harmony-typedarray.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-sharedarraybuffer.js"
320 "$target_gen_dir/experimental-libraries.cc",
324 rebase_path("$target_gen_dir/experimental-libraries.cc",
327 ] + rebase_path(sources, root_build_dir)
329 if (v8_use_external_startup_data) {
330 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
333 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir),
338 action("js2c_extras") {
339 visibility = [ ":*" ] # Only targets in this file can depend on this.
341 script = "tools/js2c.py"
343 # The script depends on this other script, this rule causes a rebuild if it
345 inputs = [ "tools/jsmin.py" ]
347 sources = v8_extra_library_files
350 "$target_gen_dir/extras-libraries.cc",
354 rebase_path("$target_gen_dir/extras-libraries.cc",
357 ] + rebase_path(sources, root_build_dir)
359 if (v8_use_external_startup_data) {
360 outputs += [ "$target_gen_dir/libraries_extras.bin" ]
363 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir),
369 visibility = [ ":*" ] # Only targets in this file can depend on this.
371 script = "tools/js2c.py"
379 "$target_gen_dir/d8-js.cc",
382 args = rebase_path(outputs, root_build_dir) + [ "D8" ] +
383 rebase_path(inputs, root_build_dir)
386 if (v8_use_external_startup_data) {
387 action("natives_blob") {
388 visibility = [ ":*" ] # Only targets in this file can depend on this.
393 ":js2c_experimental",
398 "$target_gen_dir/libraries.bin",
399 "$target_gen_dir/libraries_code_stub.bin",
400 "$target_gen_dir/libraries_experimental.bin",
401 "$target_gen_dir/libraries_extras.bin",
405 "$root_out_dir/natives_blob.bin",
408 script = "tools/concatenate-files.py"
410 args = rebase_path(sources + outputs, root_build_dir)
414 action("postmortem-metadata") {
415 # Only targets in this file and the top-level visibility target can
422 script = "tools/gen-postmortem-metadata.py"
430 "$target_gen_dir/debug-support.cc",
433 args = rebase_path(outputs, root_build_dir) +
434 rebase_path(sources, root_build_dir)
437 action("run_mksnapshot") {
438 visibility = [ ":*" ] # Only targets in this file can depend on this.
441 ":mksnapshot($snapshot_toolchain)",
444 script = "tools/run.py"
447 "$target_gen_dir/snapshot.cc",
451 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)",
452 "root_out_dir") + "/mksnapshot",
454 "--log-snapshot-positions",
456 rebase_path("$target_gen_dir/snapshot.log", root_build_dir),
457 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir),
460 if (v8_random_seed != "0") {
467 if (v8_use_external_startup_data) {
468 outputs += [ "$root_out_dir/snapshot_blob.bin" ]
471 rebase_path("$root_out_dir/snapshot_blob.bin", root_build_dir),
476 ###############################################################################
477 # Source Sets (aka static libraries)
480 source_set("v8_nosnapshot") {
481 visibility = [ ":*" ] # Only targets in this file can depend on this.
486 ":js2c_experimental",
492 "$target_gen_dir/libraries.cc",
493 "$target_gen_dir/code-stub-libraries.cc",
494 "$target_gen_dir/experimental-libraries.cc",
495 "$target_gen_dir/extras-libraries.cc",
496 "src/snapshot/snapshot-empty.cc",
499 configs -= [ "//build/config/compiler:chromium_code" ]
500 configs += [ "//build/config/compiler:no_chromium_code" ]
508 source_set("v8_snapshot") {
509 # Only targets in this file and the top-level visibility target can
519 ":js2c_experimental",
524 # This should be public so downstream targets can declare the snapshot
525 # output file as their inputs.
530 "$target_gen_dir/libraries.cc",
531 "$target_gen_dir/code-stub-libraries.cc",
532 "$target_gen_dir/experimental-libraries.cc",
533 "$target_gen_dir/extras-libraries.cc",
534 "$target_gen_dir/snapshot.cc",
537 configs -= [ "//build/config/compiler:chromium_code" ]
538 configs += [ "//build/config/compiler:no_chromium_code" ]
546 if (v8_use_external_startup_data) {
547 source_set("v8_external_snapshot") {
548 visibility = [ ":*" ] # Only targets in this file can depend on this.
553 ":js2c_experimental",
563 "src/snapshot/natives-external.cc",
564 "src/snapshot/snapshot-external.cc",
567 configs -= [ "//build/config/compiler:chromium_code" ]
568 configs += [ "//build/config/compiler:no_chromium_code" ]
577 source_set("v8_base") {
578 visibility = [ ":*" ] # Only targets in this file can depend on this.
581 "include/v8-debug.h",
582 "include/v8-platform.h",
583 "include/v8-profiler.h",
584 "include/v8-testing.h",
586 "include/v8-version.h",
588 "include/v8config.h",
593 "src/allocation-site-scopes.cc",
594 "src/allocation-site-scopes.h",
595 "src/allocation-tracker.cc",
596 "src/allocation-tracker.h",
599 "src/api-natives.cc",
605 "src/assert-scope.h",
606 "src/assert-scope.cc",
607 "src/ast-literal-reindexer.cc",
608 "src/ast-literal-reindexer.h",
609 "src/ast-numbering.cc",
610 "src/ast-numbering.h",
611 "src/ast-value-factory.cc",
612 "src/ast-value-factory.h",
615 "src/background-parsing-task.cc",
616 "src/background-parsing-task.h",
617 "src/bailout-reason.cc",
618 "src/bailout-reason.h",
619 "src/basic-block-profiler.cc",
620 "src/basic-block-profiler.h",
621 "src/bignum-dtoa.cc",
627 "src/bootstrapper.cc",
628 "src/bootstrapper.h",
631 "src/bytecodes-irregexp.h",
632 "src/cached-powers.cc",
633 "src/cached-powers.h",
634 "src/char-predicates.cc",
635 "src/char-predicates-inl.h",
636 "src/char-predicates.h",
639 "src/circular-queue-inl.h",
640 "src/circular-queue.h",
641 "src/code-factory.cc",
642 "src/code-factory.h",
645 "src/code-stubs-hydrogen.cc",
649 "src/compilation-cache.cc",
650 "src/compilation-cache.h",
651 "src/compilation-dependencies.cc",
652 "src/compilation-dependencies.h",
653 "src/compilation-statistics.cc",
654 "src/compilation-statistics.h",
655 "src/compiler/access-builder.cc",
656 "src/compiler/access-builder.h",
657 "src/compiler/all-nodes.cc",
658 "src/compiler/all-nodes.h",
659 "src/compiler/ast-graph-builder.cc",
660 "src/compiler/ast-graph-builder.h",
661 "src/compiler/ast-loop-assignment-analyzer.cc",
662 "src/compiler/ast-loop-assignment-analyzer.h",
663 "src/compiler/basic-block-instrumentor.cc",
664 "src/compiler/basic-block-instrumentor.h",
665 "src/compiler/change-lowering.cc",
666 "src/compiler/change-lowering.h",
667 "src/compiler/coalesced-live-ranges.cc",
668 "src/compiler/coalesced-live-ranges.h",
669 "src/compiler/code-generator-impl.h",
670 "src/compiler/code-generator.cc",
671 "src/compiler/code-generator.h",
672 "src/compiler/common-node-cache.cc",
673 "src/compiler/common-node-cache.h",
674 "src/compiler/common-operator-reducer.cc",
675 "src/compiler/common-operator-reducer.h",
676 "src/compiler/common-operator.cc",
677 "src/compiler/common-operator.h",
678 "src/compiler/control-builders.cc",
679 "src/compiler/control-builders.h",
680 "src/compiler/control-equivalence.cc",
681 "src/compiler/control-equivalence.h",
682 "src/compiler/control-flow-optimizer.cc",
683 "src/compiler/control-flow-optimizer.h",
684 "src/compiler/dead-code-elimination.cc",
685 "src/compiler/dead-code-elimination.h",
686 "src/compiler/diamond.h",
687 "src/compiler/frame.h",
688 "src/compiler/frame-elider.cc",
689 "src/compiler/frame-elider.h",
690 "src/compiler/frame-states.cc",
691 "src/compiler/frame-states.h",
692 "src/compiler/gap-resolver.cc",
693 "src/compiler/gap-resolver.h",
694 "src/compiler/graph-builder.h",
695 "src/compiler/graph-reducer.cc",
696 "src/compiler/graph-reducer.h",
697 "src/compiler/graph-replay.cc",
698 "src/compiler/graph-replay.h",
699 "src/compiler/graph-trimmer.cc",
700 "src/compiler/graph-trimmer.h",
701 "src/compiler/graph-visualizer.cc",
702 "src/compiler/graph-visualizer.h",
703 "src/compiler/graph.cc",
704 "src/compiler/graph.h",
705 "src/compiler/greedy-allocator.cc",
706 "src/compiler/greedy-allocator.h",
707 "src/compiler/instruction-codes.h",
708 "src/compiler/instruction-selector-impl.h",
709 "src/compiler/instruction-selector.cc",
710 "src/compiler/instruction-selector.h",
711 "src/compiler/instruction.cc",
712 "src/compiler/instruction.h",
713 "src/compiler/js-builtin-reducer.cc",
714 "src/compiler/js-builtin-reducer.h",
715 "src/compiler/js-context-specialization.cc",
716 "src/compiler/js-context-specialization.h",
717 "src/compiler/js-frame-specialization.cc",
718 "src/compiler/js-frame-specialization.h",
719 "src/compiler/js-generic-lowering.cc",
720 "src/compiler/js-generic-lowering.h",
721 "src/compiler/js-graph.cc",
722 "src/compiler/js-graph.h",
723 "src/compiler/js-inlining.cc",
724 "src/compiler/js-inlining.h",
725 "src/compiler/js-intrinsic-lowering.cc",
726 "src/compiler/js-intrinsic-lowering.h",
727 "src/compiler/js-operator.cc",
728 "src/compiler/js-operator.h",
729 "src/compiler/js-type-feedback.cc",
730 "src/compiler/js-type-feedback.h",
731 "src/compiler/js-type-feedback-lowering.cc",
732 "src/compiler/js-type-feedback-lowering.h",
733 "src/compiler/js-typed-lowering.cc",
734 "src/compiler/js-typed-lowering.h",
735 "src/compiler/jump-threading.cc",
736 "src/compiler/jump-threading.h",
737 "src/compiler/linkage-impl.h",
738 "src/compiler/linkage.cc",
739 "src/compiler/linkage.h",
740 "src/compiler/liveness-analyzer.cc",
741 "src/compiler/liveness-analyzer.h",
742 "src/compiler/load-elimination.cc",
743 "src/compiler/load-elimination.h",
744 "src/compiler/loop-peeling.cc",
745 "src/compiler/loop-analysis.cc",
746 "src/compiler/loop-analysis.h",
747 "src/compiler/machine-operator-reducer.cc",
748 "src/compiler/machine-operator-reducer.h",
749 "src/compiler/machine-operator.cc",
750 "src/compiler/machine-operator.h",
751 "src/compiler/machine-type.cc",
752 "src/compiler/machine-type.h",
753 "src/compiler/move-optimizer.cc",
754 "src/compiler/move-optimizer.h",
755 "src/compiler/node-aux-data.h",
756 "src/compiler/node-cache.cc",
757 "src/compiler/node-cache.h",
758 "src/compiler/node-marker.cc",
759 "src/compiler/node-marker.h",
760 "src/compiler/node-matchers.cc",
761 "src/compiler/node-matchers.h",
762 "src/compiler/node-properties.cc",
763 "src/compiler/node-properties.h",
764 "src/compiler/node.cc",
765 "src/compiler/node.h",
766 "src/compiler/opcodes.cc",
767 "src/compiler/opcodes.h",
768 "src/compiler/operator-properties.cc",
769 "src/compiler/operator-properties.h",
770 "src/compiler/operator.cc",
771 "src/compiler/operator.h",
772 "src/compiler/osr.cc",
773 "src/compiler/osr.h",
774 "src/compiler/pipeline.cc",
775 "src/compiler/pipeline.h",
776 "src/compiler/pipeline-statistics.cc",
777 "src/compiler/pipeline-statistics.h",
778 "src/compiler/raw-machine-assembler.cc",
779 "src/compiler/raw-machine-assembler.h",
780 "src/compiler/register-allocator.cc",
781 "src/compiler/register-allocator.h",
782 "src/compiler/register-allocator-verifier.cc",
783 "src/compiler/register-allocator-verifier.h",
784 "src/compiler/register-configuration.cc",
785 "src/compiler/register-configuration.h",
786 "src/compiler/representation-change.h",
787 "src/compiler/schedule.cc",
788 "src/compiler/schedule.h",
789 "src/compiler/scheduler.cc",
790 "src/compiler/scheduler.h",
791 "src/compiler/select-lowering.cc",
792 "src/compiler/select-lowering.h",
793 "src/compiler/simplified-lowering.cc",
794 "src/compiler/simplified-lowering.h",
795 "src/compiler/simplified-operator-reducer.cc",
796 "src/compiler/simplified-operator-reducer.h",
797 "src/compiler/simplified-operator.cc",
798 "src/compiler/simplified-operator.h",
799 "src/compiler/source-position.cc",
800 "src/compiler/source-position.h",
801 "src/compiler/state-values-utils.cc",
802 "src/compiler/state-values-utils.h",
803 "src/compiler/tail-call-optimization.cc",
804 "src/compiler/tail-call-optimization.h",
805 "src/compiler/typer.cc",
806 "src/compiler/typer.h",
807 "src/compiler/value-numbering-reducer.cc",
808 "src/compiler/value-numbering-reducer.h",
809 "src/compiler/verifier.cc",
810 "src/compiler/verifier.h",
811 "src/compiler/zone-pool.cc",
812 "src/compiler/zone-pool.h",
817 "src/conversions-inl.h",
818 "src/conversions.cc",
822 "src/cpu-profiler-inl.h",
823 "src/cpu-profiler.cc",
824 "src/cpu-profiler.h",
827 "src/dateparser-inl.h",
832 "src/deoptimizer.cc",
835 "src/disassembler.cc",
836 "src/disassembler.h",
843 "src/elements-kind.cc",
844 "src/elements-kind.h",
849 "src/expression-classifier.h",
850 "src/extensions/externalize-string-extension.cc",
851 "src/extensions/externalize-string-extension.h",
852 "src/extensions/free-buffer-extension.cc",
853 "src/extensions/free-buffer-extension.h",
854 "src/extensions/gc-extension.cc",
855 "src/extensions/gc-extension.h",
856 "src/extensions/statistics-extension.cc",
857 "src/extensions/statistics-extension.h",
858 "src/extensions/trigger-failure-extension.cc",
859 "src/extensions/trigger-failure-extension.h",
865 "src/field-index-inl.h",
868 "src/flag-definitions.h",
874 "src/full-codegen.cc",
875 "src/full-codegen.h",
876 "src/func-name-inferrer.cc",
877 "src/func-name-inferrer.h",
880 "src/global-handles.cc",
881 "src/global-handles.h",
887 "src/heap-profiler.cc",
888 "src/heap-profiler.h",
889 "src/heap-snapshot-generator-inl.h",
890 "src/heap-snapshot-generator.cc",
891 "src/heap-snapshot-generator.h",
892 "src/heap/gc-idle-time-handler.cc",
893 "src/heap/gc-idle-time-handler.h",
894 "src/heap/gc-tracer.cc",
895 "src/heap/gc-tracer.h",
896 "src/heap/heap-inl.h",
899 "src/heap/identity-map.cc",
900 "src/heap/identity-map.h",
901 "src/heap/incremental-marking.cc",
902 "src/heap/incremental-marking.h",
903 "src/heap/mark-compact-inl.h",
904 "src/heap/mark-compact.cc",
905 "src/heap/mark-compact.h",
906 "src/heap/memory-reducer.cc",
907 "src/heap/memory-reducer.h",
908 "src/heap/objects-visiting-inl.h",
909 "src/heap/objects-visiting.cc",
910 "src/heap/objects-visiting.h",
911 "src/heap/spaces-inl.h",
912 "src/heap/spaces.cc",
914 "src/heap/store-buffer-inl.h",
915 "src/heap/store-buffer.cc",
916 "src/heap/store-buffer.h",
917 "src/hydrogen-alias-analysis.h",
918 "src/hydrogen-bce.cc",
919 "src/hydrogen-bce.h",
920 "src/hydrogen-bch.cc",
921 "src/hydrogen-bch.h",
922 "src/hydrogen-canonicalize.cc",
923 "src/hydrogen-canonicalize.h",
924 "src/hydrogen-check-elimination.cc",
925 "src/hydrogen-check-elimination.h",
926 "src/hydrogen-dce.cc",
927 "src/hydrogen-dce.h",
928 "src/hydrogen-dehoist.cc",
929 "src/hydrogen-dehoist.h",
930 "src/hydrogen-environment-liveness.cc",
931 "src/hydrogen-environment-liveness.h",
932 "src/hydrogen-escape-analysis.cc",
933 "src/hydrogen-escape-analysis.h",
934 "src/hydrogen-flow-engine.h",
935 "src/hydrogen-instructions.cc",
936 "src/hydrogen-instructions.h",
939 "src/hydrogen-gvn.cc",
940 "src/hydrogen-gvn.h",
941 "src/hydrogen-infer-representation.cc",
942 "src/hydrogen-infer-representation.h",
943 "src/hydrogen-infer-types.cc",
944 "src/hydrogen-infer-types.h",
945 "src/hydrogen-load-elimination.cc",
946 "src/hydrogen-load-elimination.h",
947 "src/hydrogen-mark-deoptimize.cc",
948 "src/hydrogen-mark-deoptimize.h",
949 "src/hydrogen-mark-unreachable.cc",
950 "src/hydrogen-mark-unreachable.h",
951 "src/hydrogen-osr.cc",
952 "src/hydrogen-osr.h",
953 "src/hydrogen-range-analysis.cc",
954 "src/hydrogen-range-analysis.h",
955 "src/hydrogen-redundant-phi.cc",
956 "src/hydrogen-redundant-phi.h",
957 "src/hydrogen-removable-simulates.cc",
958 "src/hydrogen-removable-simulates.h",
959 "src/hydrogen-representation-changes.cc",
960 "src/hydrogen-representation-changes.h",
961 "src/hydrogen-sce.cc",
962 "src/hydrogen-sce.h",
963 "src/hydrogen-store-elimination.cc",
964 "src/hydrogen-store-elimination.h",
965 "src/hydrogen-types.cc",
966 "src/hydrogen-types.h",
967 "src/hydrogen-uint32-analysis.cc",
968 "src/hydrogen-uint32-analysis.h",
973 "src/ic/access-compiler.cc",
974 "src/ic/access-compiler.h",
975 "src/ic/call-optimization.cc",
976 "src/ic/call-optimization.h",
977 "src/ic/handler-compiler.cc",
978 "src/ic/handler-compiler.h",
980 "src/ic/ic-state.cc",
984 "src/ic/ic-compiler.cc",
985 "src/ic/ic-compiler.h",
986 "src/ic/stub-cache.cc",
987 "src/ic/stub-cache.h",
988 "src/interface-descriptors.cc",
989 "src/interface-descriptors.h",
990 "src/interpreter-irregexp.cc",
991 "src/interpreter-irregexp.h",
995 "src/json-stringifier.h",
996 "src/jsregexp-inl.h",
999 "src/layout-descriptor-inl.h",
1000 "src/layout-descriptor.cc",
1001 "src/layout-descriptor.h",
1004 "src/lithium-allocator-inl.h",
1005 "src/lithium-allocator.cc",
1006 "src/lithium-allocator.h",
1007 "src/lithium-codegen.cc",
1008 "src/lithium-codegen.h",
1021 "src/macro-assembler.h",
1027 "src/objects-debug.cc",
1028 "src/objects-inl.h",
1029 "src/objects-printer.cc",
1032 "src/optimizing-compile-dispatcher.cc",
1033 "src/optimizing-compile-dispatcher.h",
1036 "src/pattern-rewriter.cc",
1039 "src/pending-compilation-error-handler.cc",
1040 "src/pending-compilation-error-handler.h",
1041 "src/preparse-data-format.h",
1042 "src/preparse-data.cc",
1043 "src/preparse-data.h",
1046 "src/prettyprinter.cc",
1047 "src/prettyprinter.h",
1048 "src/profile-generator-inl.h",
1049 "src/profile-generator.cc",
1050 "src/profile-generator.h",
1051 "src/property-details.h",
1055 "src/regexp-macro-assembler-irregexp-inl.h",
1056 "src/regexp-macro-assembler-irregexp.cc",
1057 "src/regexp-macro-assembler-irregexp.h",
1058 "src/regexp-macro-assembler-tracer.cc",
1059 "src/regexp-macro-assembler-tracer.h",
1060 "src/regexp-macro-assembler.cc",
1061 "src/regexp-macro-assembler.h",
1062 "src/regexp-stack.cc",
1063 "src/regexp-stack.h",
1066 "src/runtime-profiler.cc",
1067 "src/runtime-profiler.h",
1068 "src/runtime/runtime-array.cc",
1069 "src/runtime/runtime-atomics.cc",
1070 "src/runtime/runtime-classes.cc",
1071 "src/runtime/runtime-collections.cc",
1072 "src/runtime/runtime-compiler.cc",
1073 "src/runtime/runtime-date.cc",
1074 "src/runtime/runtime-debug.cc",
1075 "src/runtime/runtime-forin.cc",
1076 "src/runtime/runtime-function.cc",
1077 "src/runtime/runtime-generator.cc",
1078 "src/runtime/runtime-i18n.cc",
1079 "src/runtime/runtime-internal.cc",
1080 "src/runtime/runtime-json.cc",
1081 "src/runtime/runtime-literals.cc",
1082 "src/runtime/runtime-liveedit.cc",
1083 "src/runtime/runtime-maths.cc",
1084 "src/runtime/runtime-numbers.cc",
1085 "src/runtime/runtime-object.cc",
1086 "src/runtime/runtime-observe.cc",
1087 "src/runtime/runtime-proxy.cc",
1088 "src/runtime/runtime-regexp.cc",
1089 "src/runtime/runtime-scopes.cc",
1090 "src/runtime/runtime-strings.cc",
1091 "src/runtime/runtime-symbol.cc",
1092 "src/runtime/runtime-test.cc",
1093 "src/runtime/runtime-typedarray.cc",
1094 "src/runtime/runtime-uri.cc",
1095 "src/runtime/runtime-utils.h",
1096 "src/runtime/runtime.cc",
1097 "src/runtime/runtime.h",
1098 "src/safepoint-table.cc",
1099 "src/safepoint-table.h",
1102 "src/scanner-character-streams.cc",
1103 "src/scanner-character-streams.h",
1112 "src/small-pointer-list.h",
1113 "src/snapshot/natives.h",
1114 "src/snapshot/serialize.cc",
1115 "src/snapshot/serialize.h",
1116 "src/snapshot/snapshot-common.cc",
1117 "src/snapshot/snapshot-source-sink.cc",
1118 "src/snapshot/snapshot-source-sink.h",
1120 "src/splay-tree-inl.h",
1121 "src/snapshot/snapshot.h",
1122 "src/string-builder.cc",
1123 "src/string-builder.h",
1124 "src/string-search.cc",
1125 "src/string-search.h",
1126 "src/string-stream.cc",
1127 "src/string-stream.h",
1128 "src/strings-storage.cc",
1129 "src/strings-storage.h",
1134 "src/transitions-inl.h",
1135 "src/transitions.cc",
1136 "src/transitions.h",
1137 "src/type-feedback-vector-inl.h",
1138 "src/type-feedback-vector.cc",
1139 "src/type-feedback-vector.h",
1147 "src/unbound-queue-inl.h",
1148 "src/unbound-queue.h",
1149 "src/unicode-inl.h",
1152 "src/unicode-decoder.cc",
1153 "src/unicode-decoder.h",
1166 "src/vm-state-inl.h",
1170 "src/zone-allocator.h",
1171 "src/zone-containers.h",
1172 "src/third_party/fdlibm/fdlibm.cc",
1173 "src/third_party/fdlibm/fdlibm.h",
1176 if (v8_target_arch == "x86") {
1178 "src/ia32/assembler-ia32-inl.h",
1179 "src/ia32/assembler-ia32.cc",
1180 "src/ia32/assembler-ia32.h",
1181 "src/ia32/builtins-ia32.cc",
1182 "src/ia32/code-stubs-ia32.cc",
1183 "src/ia32/code-stubs-ia32.h",
1184 "src/ia32/codegen-ia32.cc",
1185 "src/ia32/codegen-ia32.h",
1186 "src/ia32/cpu-ia32.cc",
1187 "src/ia32/debug-ia32.cc",
1188 "src/ia32/deoptimizer-ia32.cc",
1189 "src/ia32/disasm-ia32.cc",
1190 "src/ia32/frames-ia32.cc",
1191 "src/ia32/frames-ia32.h",
1192 "src/ia32/full-codegen-ia32.cc",
1193 "src/ia32/interface-descriptors-ia32.cc",
1194 "src/ia32/lithium-codegen-ia32.cc",
1195 "src/ia32/lithium-codegen-ia32.h",
1196 "src/ia32/lithium-gap-resolver-ia32.cc",
1197 "src/ia32/lithium-gap-resolver-ia32.h",
1198 "src/ia32/lithium-ia32.cc",
1199 "src/ia32/lithium-ia32.h",
1200 "src/ia32/macro-assembler-ia32.cc",
1201 "src/ia32/macro-assembler-ia32.h",
1202 "src/ia32/regexp-macro-assembler-ia32.cc",
1203 "src/ia32/regexp-macro-assembler-ia32.h",
1204 "src/compiler/ia32/code-generator-ia32.cc",
1205 "src/compiler/ia32/instruction-codes-ia32.h",
1206 "src/compiler/ia32/instruction-selector-ia32.cc",
1207 "src/compiler/ia32/linkage-ia32.cc",
1208 "src/ic/ia32/access-compiler-ia32.cc",
1209 "src/ic/ia32/handler-compiler-ia32.cc",
1210 "src/ic/ia32/ic-ia32.cc",
1211 "src/ic/ia32/ic-compiler-ia32.cc",
1212 "src/ic/ia32/stub-cache-ia32.cc",
1214 } else if (v8_target_arch == "x64") {
1216 "src/x64/assembler-x64-inl.h",
1217 "src/x64/assembler-x64.cc",
1218 "src/x64/assembler-x64.h",
1219 "src/x64/builtins-x64.cc",
1220 "src/x64/code-stubs-x64.cc",
1221 "src/x64/code-stubs-x64.h",
1222 "src/x64/codegen-x64.cc",
1223 "src/x64/codegen-x64.h",
1224 "src/x64/cpu-x64.cc",
1225 "src/x64/debug-x64.cc",
1226 "src/x64/deoptimizer-x64.cc",
1227 "src/x64/disasm-x64.cc",
1228 "src/x64/frames-x64.cc",
1229 "src/x64/frames-x64.h",
1230 "src/x64/full-codegen-x64.cc",
1231 "src/x64/interface-descriptors-x64.cc",
1232 "src/x64/lithium-codegen-x64.cc",
1233 "src/x64/lithium-codegen-x64.h",
1234 "src/x64/lithium-gap-resolver-x64.cc",
1235 "src/x64/lithium-gap-resolver-x64.h",
1236 "src/x64/lithium-x64.cc",
1237 "src/x64/lithium-x64.h",
1238 "src/x64/macro-assembler-x64.cc",
1239 "src/x64/macro-assembler-x64.h",
1240 "src/x64/regexp-macro-assembler-x64.cc",
1241 "src/x64/regexp-macro-assembler-x64.h",
1242 "src/compiler/x64/code-generator-x64.cc",
1243 "src/compiler/x64/instruction-codes-x64.h",
1244 "src/compiler/x64/instruction-selector-x64.cc",
1245 "src/compiler/x64/linkage-x64.cc",
1246 "src/ic/x64/access-compiler-x64.cc",
1247 "src/ic/x64/handler-compiler-x64.cc",
1248 "src/ic/x64/ic-x64.cc",
1249 "src/ic/x64/ic-compiler-x64.cc",
1250 "src/ic/x64/stub-cache-x64.cc",
1252 } else if (v8_target_arch == "arm") {
1254 "src/arm/assembler-arm-inl.h",
1255 "src/arm/assembler-arm.cc",
1256 "src/arm/assembler-arm.h",
1257 "src/arm/builtins-arm.cc",
1258 "src/arm/code-stubs-arm.cc",
1259 "src/arm/code-stubs-arm.h",
1260 "src/arm/codegen-arm.cc",
1261 "src/arm/codegen-arm.h",
1262 "src/arm/constants-arm.h",
1263 "src/arm/constants-arm.cc",
1264 "src/arm/cpu-arm.cc",
1265 "src/arm/debug-arm.cc",
1266 "src/arm/deoptimizer-arm.cc",
1267 "src/arm/disasm-arm.cc",
1268 "src/arm/frames-arm.cc",
1269 "src/arm/frames-arm.h",
1270 "src/arm/full-codegen-arm.cc",
1271 "src/arm/interface-descriptors-arm.cc",
1272 "src/arm/interface-descriptors-arm.h",
1273 "src/arm/lithium-arm.cc",
1274 "src/arm/lithium-arm.h",
1275 "src/arm/lithium-codegen-arm.cc",
1276 "src/arm/lithium-codegen-arm.h",
1277 "src/arm/lithium-gap-resolver-arm.cc",
1278 "src/arm/lithium-gap-resolver-arm.h",
1279 "src/arm/macro-assembler-arm.cc",
1280 "src/arm/macro-assembler-arm.h",
1281 "src/arm/regexp-macro-assembler-arm.cc",
1282 "src/arm/regexp-macro-assembler-arm.h",
1283 "src/arm/simulator-arm.cc",
1284 "src/arm/simulator-arm.h",
1285 "src/compiler/arm/code-generator-arm.cc",
1286 "src/compiler/arm/instruction-codes-arm.h",
1287 "src/compiler/arm/instruction-selector-arm.cc",
1288 "src/compiler/arm/linkage-arm.cc",
1289 "src/ic/arm/access-compiler-arm.cc",
1290 "src/ic/arm/handler-compiler-arm.cc",
1291 "src/ic/arm/ic-arm.cc",
1292 "src/ic/arm/ic-compiler-arm.cc",
1293 "src/ic/arm/stub-cache-arm.cc",
1295 } else if (v8_target_arch == "arm64") {
1297 "src/arm64/assembler-arm64.cc",
1298 "src/arm64/assembler-arm64.h",
1299 "src/arm64/assembler-arm64-inl.h",
1300 "src/arm64/builtins-arm64.cc",
1301 "src/arm64/codegen-arm64.cc",
1302 "src/arm64/codegen-arm64.h",
1303 "src/arm64/code-stubs-arm64.cc",
1304 "src/arm64/code-stubs-arm64.h",
1305 "src/arm64/constants-arm64.h",
1306 "src/arm64/cpu-arm64.cc",
1307 "src/arm64/debug-arm64.cc",
1308 "src/arm64/decoder-arm64.cc",
1309 "src/arm64/decoder-arm64.h",
1310 "src/arm64/decoder-arm64-inl.h",
1311 "src/arm64/deoptimizer-arm64.cc",
1312 "src/arm64/disasm-arm64.cc",
1313 "src/arm64/disasm-arm64.h",
1314 "src/arm64/frames-arm64.cc",
1315 "src/arm64/frames-arm64.h",
1316 "src/arm64/full-codegen-arm64.cc",
1317 "src/arm64/instructions-arm64.cc",
1318 "src/arm64/instructions-arm64.h",
1319 "src/arm64/instrument-arm64.cc",
1320 "src/arm64/instrument-arm64.h",
1321 "src/arm64/interface-descriptors-arm64.cc",
1322 "src/arm64/interface-descriptors-arm64.h",
1323 "src/arm64/lithium-arm64.cc",
1324 "src/arm64/lithium-arm64.h",
1325 "src/arm64/lithium-codegen-arm64.cc",
1326 "src/arm64/lithium-codegen-arm64.h",
1327 "src/arm64/lithium-gap-resolver-arm64.cc",
1328 "src/arm64/lithium-gap-resolver-arm64.h",
1329 "src/arm64/macro-assembler-arm64.cc",
1330 "src/arm64/macro-assembler-arm64.h",
1331 "src/arm64/macro-assembler-arm64-inl.h",
1332 "src/arm64/regexp-macro-assembler-arm64.cc",
1333 "src/arm64/regexp-macro-assembler-arm64.h",
1334 "src/arm64/simulator-arm64.cc",
1335 "src/arm64/simulator-arm64.h",
1336 "src/arm64/utils-arm64.cc",
1337 "src/arm64/utils-arm64.h",
1338 "src/compiler/arm64/code-generator-arm64.cc",
1339 "src/compiler/arm64/instruction-codes-arm64.h",
1340 "src/compiler/arm64/instruction-selector-arm64.cc",
1341 "src/compiler/arm64/linkage-arm64.cc",
1342 "src/ic/arm64/access-compiler-arm64.cc",
1343 "src/ic/arm64/handler-compiler-arm64.cc",
1344 "src/ic/arm64/ic-arm64.cc",
1345 "src/ic/arm64/ic-compiler-arm64.cc",
1346 "src/ic/arm64/stub-cache-arm64.cc",
1348 } else if (v8_target_arch == "mipsel") {
1350 "src/mips/assembler-mips.cc",
1351 "src/mips/assembler-mips.h",
1352 "src/mips/assembler-mips-inl.h",
1353 "src/mips/builtins-mips.cc",
1354 "src/mips/codegen-mips.cc",
1355 "src/mips/codegen-mips.h",
1356 "src/mips/code-stubs-mips.cc",
1357 "src/mips/code-stubs-mips.h",
1358 "src/mips/constants-mips.cc",
1359 "src/mips/constants-mips.h",
1360 "src/mips/cpu-mips.cc",
1361 "src/mips/debug-mips.cc",
1362 "src/mips/deoptimizer-mips.cc",
1363 "src/mips/disasm-mips.cc",
1364 "src/mips/frames-mips.cc",
1365 "src/mips/frames-mips.h",
1366 "src/mips/full-codegen-mips.cc",
1367 "src/mips/interface-descriptors-mips.cc",
1368 "src/mips/lithium-codegen-mips.cc",
1369 "src/mips/lithium-codegen-mips.h",
1370 "src/mips/lithium-gap-resolver-mips.cc",
1371 "src/mips/lithium-gap-resolver-mips.h",
1372 "src/mips/lithium-mips.cc",
1373 "src/mips/lithium-mips.h",
1374 "src/mips/macro-assembler-mips.cc",
1375 "src/mips/macro-assembler-mips.h",
1376 "src/mips/regexp-macro-assembler-mips.cc",
1377 "src/mips/regexp-macro-assembler-mips.h",
1378 "src/mips/simulator-mips.cc",
1379 "src/mips/simulator-mips.h",
1380 "src/compiler/mips/code-generator-mips.cc",
1381 "src/compiler/mips/instruction-codes-mips.h",
1382 "src/compiler/mips/instruction-selector-mips.cc",
1383 "src/compiler/mips/linkage-mips.cc",
1384 "src/ic/mips/access-compiler-mips.cc",
1385 "src/ic/mips/handler-compiler-mips.cc",
1386 "src/ic/mips/ic-mips.cc",
1387 "src/ic/mips/ic-compiler-mips.cc",
1388 "src/ic/mips/stub-cache-mips.cc",
1390 } else if (v8_target_arch == "mips64el") {
1392 "src/mips64/assembler-mips64.cc",
1393 "src/mips64/assembler-mips64.h",
1394 "src/mips64/assembler-mips64-inl.h",
1395 "src/mips64/builtins-mips64.cc",
1396 "src/mips64/codegen-mips64.cc",
1397 "src/mips64/codegen-mips64.h",
1398 "src/mips64/code-stubs-mips64.cc",
1399 "src/mips64/code-stubs-mips64.h",
1400 "src/mips64/constants-mips64.cc",
1401 "src/mips64/constants-mips64.h",
1402 "src/mips64/cpu-mips64.cc",
1403 "src/mips64/debug-mips64.cc",
1404 "src/mips64/deoptimizer-mips64.cc",
1405 "src/mips64/disasm-mips64.cc",
1406 "src/mips64/frames-mips64.cc",
1407 "src/mips64/frames-mips64.h",
1408 "src/mips64/full-codegen-mips64.cc",
1409 "src/mips64/interface-descriptors-mips64.cc",
1410 "src/mips64/lithium-codegen-mips64.cc",
1411 "src/mips64/lithium-codegen-mips64.h",
1412 "src/mips64/lithium-gap-resolver-mips64.cc",
1413 "src/mips64/lithium-gap-resolver-mips64.h",
1414 "src/mips64/lithium-mips64.cc",
1415 "src/mips64/lithium-mips64.h",
1416 "src/mips64/macro-assembler-mips64.cc",
1417 "src/mips64/macro-assembler-mips64.h",
1418 "src/mips64/regexp-macro-assembler-mips64.cc",
1419 "src/mips64/regexp-macro-assembler-mips64.h",
1420 "src/mips64/simulator-mips64.cc",
1421 "src/mips64/simulator-mips64.h",
1422 "src/ic/mips64/access-compiler-mips64.cc",
1423 "src/ic/mips64/handler-compiler-mips64.cc",
1424 "src/ic/mips64/ic-mips64.cc",
1425 "src/ic/mips64/ic-compiler-mips64.cc",
1426 "src/ic/mips64/stub-cache-mips64.cc",
1430 configs -= [ "//build/config/compiler:chromium_code" ]
1431 configs += [ "//build/config/compiler:no_chromium_code" ]
1439 configs -= [ "//build/config/compiler:optimize" ]
1440 configs += [ "//build/config/compiler:optimize_max" ]
1449 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1450 cflags = [ "/wd4267" ]
1453 if (v8_enable_i18n_support) {
1454 deps += [ "//third_party/icu" ]
1456 deps += [ "//third_party/icu:icudata" ]
1459 # TODO(jochen): Add support for icu_use_data_file_flag
1460 defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE" ]
1468 if (v8_postmortem_support) {
1469 sources += [ "$target_gen_dir/debug-support.cc" ]
1470 deps += [ ":postmortem-metadata" ]
1474 source_set("v8_libbase") {
1475 visibility = [ ":*" ] # Only targets in this file can depend on this.
1478 "src/base/adapters.h",
1479 "src/base/atomicops.h",
1480 "src/base/atomicops_internals_arm64_gcc.h",
1481 "src/base/atomicops_internals_arm_gcc.h",
1482 "src/base/atomicops_internals_atomicword_compat.h",
1483 "src/base/atomicops_internals_mac.h",
1484 "src/base/atomicops_internals_mips_gcc.h",
1485 "src/base/atomicops_internals_mips64_gcc.h",
1486 "src/base/atomicops_internals_portable.h",
1487 "src/base/atomicops_internals_tsan.h",
1488 "src/base/atomicops_internals_x86_gcc.cc",
1489 "src/base/atomicops_internals_x86_gcc.h",
1490 "src/base/atomicops_internals_x86_msvc.h",
1493 "src/base/build_config.h",
1496 "src/base/division-by-constant.cc",
1497 "src/base/division-by-constant.h",
1499 "src/base/functional.cc",
1500 "src/base/functional.h",
1501 "src/base/iterator.h",
1502 "src/base/lazy-instance.h",
1503 "src/base/logging.cc",
1504 "src/base/logging.h",
1505 "src/base/macros.h",
1508 "src/base/platform/elapsed-timer.h",
1509 "src/base/platform/time.cc",
1510 "src/base/platform/time.h",
1511 "src/base/platform/condition-variable.cc",
1512 "src/base/platform/condition-variable.h",
1513 "src/base/platform/mutex.cc",
1514 "src/base/platform/mutex.h",
1515 "src/base/platform/platform.h",
1516 "src/base/platform/semaphore.cc",
1517 "src/base/platform/semaphore.h",
1518 "src/base/safe_conversions.h",
1519 "src/base/safe_conversions_impl.h",
1520 "src/base/safe_math.h",
1521 "src/base/safe_math_impl.h",
1522 "src/base/smart-pointers.h",
1523 "src/base/sys-info.cc",
1524 "src/base/sys-info.h",
1525 "src/base/utils/random-number-generator.cc",
1526 "src/base/utils/random-number-generator.h",
1529 configs -= [ "//build/config/compiler:chromium_code" ]
1530 configs += [ "//build/config/compiler:no_chromium_code" ]
1532 ":internal_config_base",
1538 configs -= [ "//build/config/compiler:optimize" ]
1539 configs += [ "//build/config/compiler:optimize_max" ]
1545 sources += [ "src/base/platform/platform-posix.cc" ]
1549 sources += [ "src/base/platform/platform-linux.cc" ]
1551 libs = [ "dl", "rt" ]
1552 } else if (is_android) {
1553 defines += [ "CAN_USE_VFP_INSTRUCTIONS" ]
1555 if (current_toolchain == host_toolchain) {
1556 libs = [ "dl", "rt" ]
1557 if (host_os == "mac") {
1558 sources += [ "src/base/platform/platform-macos.cc" ]
1560 sources += [ "src/base/platform/platform-linux.cc" ]
1563 sources += [ "src/base/platform/platform-linux.cc" ]
1565 } else if (is_mac) {
1566 sources += [ "src/base/platform/platform-macos.cc" ]
1567 } else if (is_win) {
1568 # TODO(jochen): Add support for cygwin.
1570 "src/base/platform/platform-win32.cc",
1571 "src/base/win32-headers.h",
1574 defines += [ "_CRT_RAND_S" ] # for rand_s()
1582 # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
1585 source_set("v8_libplatform") {
1587 "include/libplatform/libplatform.h",
1588 "src/libplatform/default-platform.cc",
1589 "src/libplatform/default-platform.h",
1590 "src/libplatform/task-queue.cc",
1591 "src/libplatform/task-queue.h",
1592 "src/libplatform/worker-thread.cc",
1593 "src/libplatform/worker-thread.h",
1596 configs -= [ "//build/config/compiler:chromium_code" ]
1597 configs += [ "//build/config/compiler:no_chromium_code" ]
1599 ":internal_config_base",
1605 configs -= [ "//build/config/compiler:optimize" ]
1606 configs += [ "//build/config/compiler:optimize_max" ]
1614 ###############################################################################
1618 if (current_toolchain == snapshot_toolchain) {
1619 executable("mksnapshot") {
1620 visibility = [ ":*" ] # Only targets in this file can depend on this.
1623 "src/snapshot/mksnapshot.cc",
1626 configs -= [ "//build/config/compiler:chromium_code" ]
1627 configs += [ "//build/config/compiler:no_chromium_code" ]
1638 "//build/config/sanitizers:deps",
1643 ###############################################################################
1647 if (is_component_build) {
1650 "src/v8dll-main.cc",
1653 if (v8_use_snapshot && v8_use_external_startup_data) {
1658 ":v8_external_snapshot",
1660 } else if (v8_use_snapshot) {
1664 # v8_snapshot should be public so downstream targets can declare the
1665 # snapshot file as their input.
1670 assert(!v8_use_external_startup_data)
1677 configs -= [ "//build/config/compiler:chromium_code" ]
1678 configs += [ "//build/config/compiler:no_chromium_code" ]
1685 public_configs = [ ":external_config" ]
1688 if (is_android && current_toolchain != host_toolchain) {
1694 if (v8_use_snapshot && v8_use_external_startup_data) {
1697 ":v8_external_snapshot",
1699 } else if (v8_use_snapshot) {
1707 assert(!v8_use_external_startup_data)
1714 public_configs = [ ":external_config" ]
1718 if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") ||
1719 (current_toolchain != host_toolchain && v8_toolset_for_d8 == "target")) {
1724 "src/startup-data-util.h",
1725 "src/startup-data-util.cc",
1728 configs -= [ "//build/config/compiler:chromium_code" ]
1729 configs += [ "//build/config/compiler:no_chromium_code" ]
1731 # Note: don't use :internal_config here because this target will get
1732 # the :external_config applied to it by virtue of depending on :v8, and
1733 # you can't have both applied to the same target.
1734 ":internal_config_base",
1743 "//build/config/sanitizers:deps",
1746 # TODO(jochen): Add support for readline and vtunejit.
1749 sources += [ "src/d8-posix.cc" ]
1750 } else if (is_win) {
1751 sources += [ "src/d8-windows.cc" ]
1754 if (!is_component_build) {
1758 "$target_gen_dir/d8-js.cc",
1761 if (v8_enable_i18n_support) {
1762 deps += [ "//third_party/icu" ]