Revert of Expose SIMD.Float32x4 type to Javascript. (patchset #14 id:450001 of https...
[platform/upstream/v8.git] / BUILD.gn
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.
4
5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni")
8
9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build.
11 import("//build/module_args/v8.gni")
12
13 # TODO(jochen): These will need to be user-settable to support standalone V8
14 # builds.
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"
28
29 # The snapshot needs to be compiled for the host, but compiled with
30 # a toolchain that matches the bit-width of the target.
31 #
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"
40   } else {
41     assert(false, "Need environment for this arch")
42   }
43 } else {
44   snapshot_toolchain = default_toolchain
45 }
46
47 ###############################################################################
48 # Configurations
49 #
50 config("internal_config") {
51   visibility = [ ":*" ]  # Only targets in this file can depend on this.
52
53   include_dirs = [ "." ]
54
55   if (is_component_build) {
56     defines = [
57       "V8_SHARED",
58       "BUILDING_V8_SHARED",
59     ]
60   }
61 }
62
63 config("internal_config_base") {
64   visibility = [ ":*" ]  # Only targets in this file can depend on this.
65
66   include_dirs = [ "." ]
67 }
68
69 # This config should only be applied to code using V8 and not any V8 code
70 # itself.
71 config("external_config") {
72   if (is_component_build) {
73     defines = [
74       "V8_SHARED",
75       "USING_V8_SHARED",
76     ]
77   }
78   include_dirs = [ "include" ]
79 }
80
81 config("features") {
82   visibility = [ ":*" ]  # Only targets in this file can depend on this.
83
84   defines = []
85
86   if (v8_enable_disassembler == true) {
87     defines += [ "ENABLE_DISASSEMBLER" ]
88   }
89   if (v8_enable_gdbjit == true) {
90     defines += [ "ENABLE_GDB_JIT_INTERFACE" ]
91   }
92   if (v8_object_print == true) {
93     defines += [ "OBJECT_PRINT" ]
94   }
95   if (v8_enable_verify_heap == true) {
96     defines += [ "VERIFY_HEAP" ]
97   }
98   if (v8_interpreted_regexp == true) {
99     defines += [ "V8_INTERPRETED_REGEXP" ]
100   }
101   if (v8_deprecation_warnings == true) {
102     defines += [ "V8_DEPRECATION_WARNINGS" ]
103   }
104   if (v8_enable_i18n_support == true) {
105     defines += [ "V8_I18N_SUPPORT" ]
106   }
107   if (v8_enable_handle_zapping == true) {
108     defines += [ "ENABLE_HANDLE_ZAPPING" ]
109   }
110   if (v8_use_external_startup_data == true) {
111     defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
112   }
113 }
114
115 config("toolchain") {
116   visibility = [ ":*" ]  # Only targets in this file can depend on this.
117
118   defines = []
119   cflags = []
120
121   # TODO(jochen): Add support for arm subarchs, mips, mipsel, mips64el.
122
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" ]
128       }
129       if (arm_fpu == "vfpv3-d16") {
130         defines += [ "CAN_USE_VFP3_INSTRUCTIONS" ]
131       } else if (arm_fpu == "vfpv3") {
132         defines += [
133           "CAN_USE_VFP3_INSTRUCTIONS",
134           "CAN_USE_VFP32DREGS",
135         ]
136       } else if (arm_fpu == "neon") {
137         defines += [
138           "CAN_USE_VFP3_INSTRUCTIONS",
139           "CAN_USE_VFP32DREGS",
140           "CAN_USE_NEON",
141         ]
142       }
143     } else {
144       # These defines ares used for the ARM simulator.
145       defines += [
146         "CAN_USE_ARMV7_INSTRUCTIONS",
147         "CAN_USE_VFP3_INSTRUCTIONS",
148         "CAN_USE_VFP32DREGS",
149         "USE_EABI_HARDFLOAT=0",
150       ]
151     }
152
153     # TODO(jochen): Add support for arm_test_noprobe.
154   }
155   if (v8_target_arch == "arm64") {
156     defines += [ "V8_TARGET_ARCH_ARM64" ]
157   }
158   if (v8_target_arch == "mipsel") {
159     defines += [ "V8_TARGET_ARCH_MIPS" ]
160   }
161   if (v8_target_arch == "mips64el") {
162     defines += [ "V8_TARGET_ARCH_MIPS64" ]
163   }
164   if (v8_target_arch == "x86") {
165     defines += [ "V8_TARGET_ARCH_IA32" ]
166   }
167   if (v8_target_arch == "x64") {
168     defines += [ "V8_TARGET_ARCH_X64" ]
169   }
170   if (is_win) {
171     defines += [ "WIN32" ]
172     # TODO(jochen): Support v8_enable_prof.
173   }
174
175   # TODO(jochen): Add support for compiling with simulators.
176
177   if (is_debug) {
178     # TODO(jochen): Add support for different debug optimization levels.
179     defines += [
180       "ENABLE_DISASSEMBLER",
181       "V8_ENABLE_CHECKS",
182       "OBJECT_PRINT",
183       "VERIFY_HEAP",
184       "DEBUG",
185       "OPTIMIZED_DEBUG",
186     ]
187   }
188 }
189
190 ###############################################################################
191 # Actions
192 #
193
194 action("js2c") {
195   visibility = [ ":*" ]  # Only targets in this file can depend on this.
196
197   script = "tools/js2c.py"
198
199   # The script depends on this other script, this rule causes a rebuild if it
200   # changes.
201   inputs = [ "tools/jsmin.py" ]
202
203   sources = [
204     "src/macros.py",
205     "src/messages.h",
206     "src/runtime.js",
207     "src/prologue.js",
208     "src/v8natives.js",
209     "src/symbol.js",
210     "src/array.js",
211     "src/string.js",
212     "src/uri.js",
213     "src/math.js",
214     "src/third_party/fdlibm/fdlibm.js",
215     "src/date.js",
216     "src/regexp.js",
217     "src/arraybuffer.js",
218     "src/typedarray.js",
219     "src/iterator-prototype.js",
220     "src/generator.js",
221     "src/object-observe.js",
222     "src/collection.js",
223     "src/weak-collection.js",
224     "src/collection-iterator.js",
225     "src/promise.js",
226     "src/messages.js",
227     "src/json.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",
233     "src/templates.js",
234     "src/harmony-array.js",
235     "src/harmony-typedarray.js",
236   ]
237
238   outputs = [
239     "$target_gen_dir/libraries.cc",
240   ]
241
242   if (v8_enable_i18n_support) {
243     sources += [ "src/i18n.js" ]
244   }
245
246   args = [
247            rebase_path("$target_gen_dir/libraries.cc", root_build_dir),
248            "CORE",
249          ] + rebase_path(sources, root_build_dir)
250
251   if (v8_use_external_startup_data) {
252     outputs += [ "$target_gen_dir/libraries.bin" ]
253     args += [
254       "--startup_blob",
255       rebase_path("$target_gen_dir/libraries.bin", root_build_dir),
256     ]
257   }
258 }
259
260 action("js2c_code_stubs") {
261   visibility = [ ":*" ]  # Only targets in this file can depend on this.
262
263   script = "tools/js2c.py"
264
265   # The script depends on this other script, this rule causes a rebuild if it
266   # changes.
267   inputs = [ "tools/jsmin.py" ]
268
269   sources = [
270     "src/macros.py",
271     "src/messages.h",
272     "src/code-stubs.js"
273   ]
274
275   outputs = [
276     "$target_gen_dir/code-stub-libraries.cc",
277   ]
278
279   args = [
280            rebase_path("$target_gen_dir/code-stub-libraries.cc",
281                        root_build_dir),
282            "CODE_STUB",
283          ] + rebase_path(sources, root_build_dir)
284
285   if (v8_use_external_startup_data) {
286     outputs += [ "$target_gen_dir/libraries_code_stub.bin" ]
287     args += [
288       "--startup_blob",
289       rebase_path("$target_gen_dir/libraries_code_stub.bin", root_build_dir),
290     ]
291   }
292 }
293
294 action("js2c_experimental") {
295   visibility = [ ":*" ]  # Only targets in this file can depend on this.
296
297   script = "tools/js2c.py"
298
299   # The script depends on this other script, this rule causes a rebuild if it
300   # changes.
301   inputs = [ "tools/jsmin.py" ]
302
303   sources = [
304     "src/macros.py",
305     "src/messages.h",
306     "src/proxy.js",
307     "src/generator.js",
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"
317   ]
318
319   outputs = [
320     "$target_gen_dir/experimental-libraries.cc",
321   ]
322
323   args = [
324            rebase_path("$target_gen_dir/experimental-libraries.cc",
325                        root_build_dir),
326            "EXPERIMENTAL",
327          ] + rebase_path(sources, root_build_dir)
328
329   if (v8_use_external_startup_data) {
330     outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
331     args += [
332       "--startup_blob",
333       rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir),
334     ]
335   }
336 }
337
338 action("js2c_extras") {
339   visibility = [ ":*" ]  # Only targets in this file can depend on this.
340
341   script = "tools/js2c.py"
342
343   # The script depends on this other script, this rule causes a rebuild if it
344   # changes.
345   inputs = [ "tools/jsmin.py" ]
346
347   sources = v8_extra_library_files
348
349   outputs = [
350     "$target_gen_dir/extras-libraries.cc",
351   ]
352
353   args = [
354            rebase_path("$target_gen_dir/extras-libraries.cc",
355                        root_build_dir),
356            "EXTRAS",
357          ] + rebase_path(sources, root_build_dir)
358
359   if (v8_use_external_startup_data) {
360     outputs += [ "$target_gen_dir/libraries_extras.bin" ]
361     args += [
362       "--startup_blob",
363       rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir),
364     ]
365   }
366 }
367
368 action("d8_js2c") {
369   visibility = [ ":*" ]  # Only targets in this file can depend on this.
370
371   script = "tools/js2c.py"
372
373   inputs = [
374     "src/d8.js",
375     "src/macros.py",
376   ]
377
378   outputs = [
379     "$target_gen_dir/d8-js.cc",
380   ]
381
382   args = rebase_path(outputs, root_build_dir) + [ "D8" ] +
383          rebase_path(inputs, root_build_dir)
384 }
385
386 if (v8_use_external_startup_data) {
387   action("natives_blob") {
388     visibility = [ ":*" ]  # Only targets in this file can depend on this.
389
390     deps = [
391       ":js2c",
392       ":js2c_code_stubs",
393       ":js2c_experimental",
394       ":js2c_extras",
395     ]
396
397     sources = [
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",
402     ]
403
404     outputs = [
405       "$root_out_dir/natives_blob.bin",
406     ]
407
408     script = "tools/concatenate-files.py"
409
410     args = rebase_path(sources + outputs, root_build_dir)
411   }
412 }
413
414 action("postmortem-metadata") {
415   # Only targets in this file and the top-level visibility target can
416   # depend on this.
417   visibility = [
418     ":*",
419     "//:gn_visibility",
420   ]
421
422   script = "tools/gen-postmortem-metadata.py"
423
424   sources = [
425     "src/objects.h",
426     "src/objects-inl.h",
427   ]
428
429   outputs = [
430     "$target_gen_dir/debug-support.cc",
431   ]
432
433   args = rebase_path(outputs, root_build_dir) +
434          rebase_path(sources, root_build_dir)
435 }
436
437 action("run_mksnapshot") {
438   visibility = [ ":*" ]  # Only targets in this file can depend on this.
439
440   deps = [
441     ":mksnapshot($snapshot_toolchain)",
442   ]
443
444   script = "tools/run.py"
445
446   outputs = [
447     "$target_gen_dir/snapshot.cc",
448   ]
449
450   args = [
451     "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)",
452                                       "root_out_dir") + "/mksnapshot",
453                        root_build_dir),
454     "--log-snapshot-positions",
455     "--logfile",
456     rebase_path("$target_gen_dir/snapshot.log", root_build_dir),
457     rebase_path("$target_gen_dir/snapshot.cc", root_build_dir),
458   ]
459
460   if (v8_random_seed != "0") {
461     args += [
462       "--random-seed",
463       v8_random_seed,
464     ]
465   }
466
467   if (v8_use_external_startup_data) {
468     outputs += [ "$root_out_dir/snapshot_blob.bin" ]
469     args += [
470       "--startup_blob",
471       rebase_path("$root_out_dir/snapshot_blob.bin", root_build_dir),
472     ]
473   }
474 }
475
476 ###############################################################################
477 # Source Sets (aka static libraries)
478 #
479
480 source_set("v8_nosnapshot") {
481   visibility = [ ":*" ]  # Only targets in this file can depend on this.
482
483   deps = [
484     ":js2c",
485     ":js2c_code_stubs",
486     ":js2c_experimental",
487     ":js2c_extras",
488     ":v8_base",
489   ]
490
491   sources = [
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",
497   ]
498
499   configs -= [ "//build/config/compiler:chromium_code" ]
500   configs += [ "//build/config/compiler:no_chromium_code" ]
501   configs += [
502     ":internal_config",
503     ":features",
504     ":toolchain",
505   ]
506 }
507
508 source_set("v8_snapshot") {
509   # Only targets in this file and the top-level visibility target can
510   # depend on this.
511   visibility = [
512     ":*",
513     "//:gn_visibility",
514   ]
515
516   deps = [
517     ":js2c",
518     ":js2c_code_stubs",
519     ":js2c_experimental",
520     ":js2c_extras",
521     ":v8_base",
522   ]
523   public_deps = [
524     # This should be public so downstream targets can declare the snapshot
525     # output file as their inputs.
526     ":run_mksnapshot",
527   ]
528
529   sources = [
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",
535   ]
536
537   configs -= [ "//build/config/compiler:chromium_code" ]
538   configs += [ "//build/config/compiler:no_chromium_code" ]
539   configs += [
540     ":internal_config",
541     ":features",
542     ":toolchain",
543   ]
544 }
545
546 if (v8_use_external_startup_data) {
547   source_set("v8_external_snapshot") {
548     visibility = [ ":*" ]  # Only targets in this file can depend on this.
549
550     deps = [
551       ":js2c",
552       ":js2c_code_stubs",
553       ":js2c_experimental",
554       ":js2c_extras",
555       ":v8_base",
556     ]
557     public_deps = [
558       ":natives_blob",
559       ":run_mksnapshot",
560     ]
561
562     sources = [
563       "src/snapshot/natives-external.cc",
564       "src/snapshot/snapshot-external.cc",
565     ]
566
567     configs -= [ "//build/config/compiler:chromium_code" ]
568     configs += [ "//build/config/compiler:no_chromium_code" ]
569     configs += [
570       ":internal_config",
571       ":features",
572       ":toolchain",
573     ]
574   }
575 }
576
577 source_set("v8_base") {
578   visibility = [ ":*" ]  # Only targets in this file can depend on this.
579
580   sources = [
581     "include/v8-debug.h",
582     "include/v8-platform.h",
583     "include/v8-profiler.h",
584     "include/v8-testing.h",
585     "include/v8-util.h",
586     "include/v8-version.h",
587     "include/v8.h",
588     "include/v8config.h",
589     "src/accessors.cc",
590     "src/accessors.h",
591     "src/allocation.cc",
592     "src/allocation.h",
593     "src/allocation-site-scopes.cc",
594     "src/allocation-site-scopes.h",
595     "src/allocation-tracker.cc",
596     "src/allocation-tracker.h",
597     "src/api.cc",
598     "src/api.h",
599     "src/api-natives.cc",
600     "src/api-natives.h",
601     "src/arguments.cc",
602     "src/arguments.h",
603     "src/assembler.cc",
604     "src/assembler.h",
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",
613     "src/ast.cc",
614     "src/ast.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",
622     "src/bignum-dtoa.h",
623     "src/bignum.cc",
624     "src/bignum.h",
625     "src/bit-vector.cc",
626     "src/bit-vector.h",
627     "src/bootstrapper.cc",
628     "src/bootstrapper.h",
629     "src/builtins.cc",
630     "src/builtins.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",
637     "src/checks.cc",
638     "src/checks.h",
639     "src/circular-queue-inl.h",
640     "src/circular-queue.h",
641     "src/code-factory.cc",
642     "src/code-factory.h",
643     "src/code-stubs.cc",
644     "src/code-stubs.h",
645     "src/code-stubs-hydrogen.cc",
646     "src/code.h",
647     "src/codegen.cc",
648     "src/codegen.h",
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",
813     "src/compiler.cc",
814     "src/compiler.h",
815     "src/contexts.cc",
816     "src/contexts.h",
817     "src/conversions-inl.h",
818     "src/conversions.cc",
819     "src/conversions.h",
820     "src/counters.cc",
821     "src/counters.h",
822     "src/cpu-profiler-inl.h",
823     "src/cpu-profiler.cc",
824     "src/cpu-profiler.h",
825     "src/date.cc",
826     "src/date.h",
827     "src/dateparser-inl.h",
828     "src/dateparser.cc",
829     "src/dateparser.h",
830     "src/debug.cc",
831     "src/debug.h",
832     "src/deoptimizer.cc",
833     "src/deoptimizer.h",
834     "src/disasm.h",
835     "src/disassembler.cc",
836     "src/disassembler.h",
837     "src/diy-fp.cc",
838     "src/diy-fp.h",
839     "src/double.h",
840     "src/dtoa.cc",
841     "src/dtoa.h",
842     "src/effects.h",
843     "src/elements-kind.cc",
844     "src/elements-kind.h",
845     "src/elements.cc",
846     "src/elements.h",
847     "src/execution.cc",
848     "src/execution.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",
860     "src/factory.cc",
861     "src/factory.h",
862     "src/fast-dtoa.cc",
863     "src/fast-dtoa.h",
864     "src/field-index.h",
865     "src/field-index-inl.h",
866     "src/fixed-dtoa.cc",
867     "src/fixed-dtoa.h",
868     "src/flag-definitions.h",
869     "src/flags.cc",
870     "src/flags.h",
871     "src/frames-inl.h",
872     "src/frames.cc",
873     "src/frames.h",
874     "src/full-codegen.cc",
875     "src/full-codegen.h",
876     "src/func-name-inferrer.cc",
877     "src/func-name-inferrer.h",
878     "src/gdb-jit.cc",
879     "src/gdb-jit.h",
880     "src/global-handles.cc",
881     "src/global-handles.h",
882     "src/globals.h",
883     "src/handles-inl.h",
884     "src/handles.cc",
885     "src/handles.h",
886     "src/hashmap.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",
897     "src/heap/heap.cc",
898     "src/heap/heap.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",
913     "src/heap/spaces.h",
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",
937     "src/hydrogen.cc",
938     "src/hydrogen.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",
969     "src/i18n.cc",
970     "src/i18n.h",
971     "src/icu_util.cc",
972     "src/icu_util.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",
979     "src/ic/ic-inl.h",
980     "src/ic/ic-state.cc",
981     "src/ic/ic-state.h",
982     "src/ic/ic.cc",
983     "src/ic/ic.h",
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",
992     "src/isolate.cc",
993     "src/isolate.h",
994     "src/json-parser.h",
995     "src/json-stringifier.h",
996     "src/jsregexp-inl.h",
997     "src/jsregexp.cc",
998     "src/jsregexp.h",
999     "src/layout-descriptor-inl.h",
1000     "src/layout-descriptor.cc",
1001     "src/layout-descriptor.h",
1002     "src/list-inl.h",
1003     "src/list.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",
1009     "src/lithium.cc",
1010     "src/lithium.h",
1011     "src/liveedit.cc",
1012     "src/liveedit.h",
1013     "src/log-inl.h",
1014     "src/log-utils.cc",
1015     "src/log-utils.h",
1016     "src/log.cc",
1017     "src/log.h",
1018     "src/lookup-inl.h",
1019     "src/lookup.cc",
1020     "src/lookup.h",
1021     "src/macro-assembler.h",
1022     "src/messages.cc",
1023     "src/messages.h",
1024     "src/modules.cc",
1025     "src/modules.h",
1026     "src/msan.h",
1027     "src/objects-debug.cc",
1028     "src/objects-inl.h",
1029     "src/objects-printer.cc",
1030     "src/objects.cc",
1031     "src/objects.h",
1032     "src/optimizing-compile-dispatcher.cc",
1033     "src/optimizing-compile-dispatcher.h",
1034     "src/ostreams.cc",
1035     "src/ostreams.h",
1036     "src/pattern-rewriter.cc",
1037     "src/parser.cc",
1038     "src/parser.h",
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",
1044     "src/preparser.cc",
1045     "src/preparser.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",
1052     "src/property.cc",
1053     "src/property.h",
1054     "src/prototype.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",
1064     "src/rewriter.cc",
1065     "src/rewriter.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",
1100     "src/sampler.cc",
1101     "src/sampler.h",
1102     "src/scanner-character-streams.cc",
1103     "src/scanner-character-streams.h",
1104     "src/scanner.cc",
1105     "src/scanner.h",
1106     "src/scopeinfo.cc",
1107     "src/scopeinfo.h",
1108     "src/scopes.cc",
1109     "src/scopes.h",
1110     "src/signature.h",
1111     "src/simulator.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",
1119     "src/splay-tree.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",
1130     "src/strtod.cc",
1131     "src/strtod.h",
1132     "src/token.cc",
1133     "src/token.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",
1140     "src/type-info.cc",
1141     "src/type-info.h",
1142     "src/types-inl.h",
1143     "src/types.cc",
1144     "src/types.h",
1145     "src/typing.cc",
1146     "src/typing.h",
1147     "src/unbound-queue-inl.h",
1148     "src/unbound-queue.h",
1149     "src/unicode-inl.h",
1150     "src/unicode.cc",
1151     "src/unicode.h",
1152     "src/unicode-decoder.cc",
1153     "src/unicode-decoder.h",
1154     "src/unique.h",
1155     "src/utils.cc",
1156     "src/utils.h",
1157     "src/v8.cc",
1158     "src/v8.h",
1159     "src/v8memory.h",
1160     "src/v8threads.cc",
1161     "src/v8threads.h",
1162     "src/variables.cc",
1163     "src/variables.h",
1164     "src/version.cc",
1165     "src/version.h",
1166     "src/vm-state-inl.h",
1167     "src/vm-state.h",
1168     "src/zone.cc",
1169     "src/zone.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",
1174   ]
1175
1176   if (v8_target_arch == "x86") {
1177     sources += [
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",
1213     ]
1214   } else if (v8_target_arch == "x64") {
1215     sources += [
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",
1251     ]
1252   } else if (v8_target_arch == "arm") {
1253     sources += [
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",
1294     ]
1295   } else if (v8_target_arch == "arm64") {
1296     sources += [
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",
1347     ]
1348   } else if (v8_target_arch == "mipsel") {
1349     sources += [
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",
1389     ]
1390   } else if (v8_target_arch == "mips64el") {
1391     sources += [
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",
1427     ]
1428   }
1429
1430   configs -= [ "//build/config/compiler:chromium_code" ]
1431   configs += [ "//build/config/compiler:no_chromium_code" ]
1432   configs += [
1433     ":internal_config",
1434     ":features",
1435     ":toolchain",
1436   ]
1437
1438   if (!is_debug) {
1439     configs -= [ "//build/config/compiler:optimize" ]
1440     configs += [ "//build/config/compiler:optimize_max" ]
1441   }
1442
1443   defines = []
1444   deps = [
1445     ":v8_libbase",
1446   ]
1447
1448   if (is_win) {
1449     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1450     cflags = [ "/wd4267" ]
1451   }
1452
1453   if (v8_enable_i18n_support) {
1454     deps += [ "//third_party/icu" ]
1455     if (is_win) {
1456       deps += [ "//third_party/icu:icudata" ]
1457     }
1458
1459     # TODO(jochen): Add support for icu_use_data_file_flag
1460     defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE" ]
1461   } else {
1462     sources -= [
1463       "src/i18n.cc",
1464       "src/i18n.h",
1465     ]
1466   }
1467
1468   if (v8_postmortem_support) {
1469     sources += [ "$target_gen_dir/debug-support.cc" ]
1470     deps += [ ":postmortem-metadata" ]
1471   }
1472 }
1473
1474 source_set("v8_libbase") {
1475   visibility = [ ":*" ]  # Only targets in this file can depend on this.
1476
1477   sources = [
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",
1491     "src/base/bits.cc",
1492     "src/base/bits.h",
1493     "src/base/build_config.h",
1494     "src/base/cpu.cc",
1495     "src/base/cpu.h",
1496     "src/base/division-by-constant.cc",
1497     "src/base/division-by-constant.h",
1498     "src/base/flags.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",
1506     "src/base/once.cc",
1507     "src/base/once.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",
1527   ]
1528
1529   configs -= [ "//build/config/compiler:chromium_code" ]
1530   configs += [ "//build/config/compiler:no_chromium_code" ]
1531   configs += [
1532     ":internal_config_base",
1533     ":features",
1534     ":toolchain",
1535   ]
1536
1537   if (!is_debug) {
1538     configs -= [ "//build/config/compiler:optimize" ]
1539     configs += [ "//build/config/compiler:optimize_max" ]
1540   }
1541
1542   defines = []
1543
1544   if (is_posix) {
1545     sources += [ "src/base/platform/platform-posix.cc" ]
1546   }
1547
1548   if (is_linux) {
1549     sources += [ "src/base/platform/platform-linux.cc" ]
1550
1551     libs = [ "dl", "rt" ]
1552   } else if (is_android) {
1553     defines += [ "CAN_USE_VFP_INSTRUCTIONS" ]
1554
1555     if (current_toolchain == host_toolchain) {
1556       libs = [ "dl", "rt" ]
1557       if (host_os == "mac") {
1558         sources += [ "src/base/platform/platform-macos.cc" ]
1559       } else {
1560         sources += [ "src/base/platform/platform-linux.cc" ]
1561       }
1562     } else {
1563       sources += [ "src/base/platform/platform-linux.cc" ]
1564     }
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.
1569     sources += [
1570       "src/base/platform/platform-win32.cc",
1571       "src/base/win32-headers.h",
1572     ]
1573
1574     defines += [ "_CRT_RAND_S" ]  # for rand_s()
1575
1576     libs = [
1577       "winmm.lib",
1578       "ws2_32.lib",
1579     ]
1580   }
1581
1582   # TODO(jochen): Add support for qnx, freebsd, openbsd, netbsd, and solaris.
1583 }
1584
1585 source_set("v8_libplatform") {
1586   sources = [
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",
1594   ]
1595
1596   configs -= [ "//build/config/compiler:chromium_code" ]
1597   configs += [ "//build/config/compiler:no_chromium_code" ]
1598   configs += [
1599     ":internal_config_base",
1600     ":features",
1601     ":toolchain",
1602   ]
1603
1604   if (!is_debug) {
1605     configs -= [ "//build/config/compiler:optimize" ]
1606     configs += [ "//build/config/compiler:optimize_max" ]
1607   }
1608
1609   deps = [
1610     ":v8_libbase",
1611   ]
1612 }
1613
1614 ###############################################################################
1615 # Executables
1616 #
1617
1618 if (current_toolchain == snapshot_toolchain) {
1619   executable("mksnapshot") {
1620     visibility = [ ":*" ]  # Only targets in this file can depend on this.
1621
1622     sources = [
1623       "src/snapshot/mksnapshot.cc",
1624     ]
1625
1626     configs -= [ "//build/config/compiler:chromium_code" ]
1627     configs += [ "//build/config/compiler:no_chromium_code" ]
1628     configs += [
1629       ":internal_config",
1630       ":features",
1631       ":toolchain",
1632     ]
1633
1634     deps = [
1635       ":v8_base",
1636       ":v8_libplatform",
1637       ":v8_nosnapshot",
1638       "//build/config/sanitizers:deps",
1639     ]
1640   }
1641 }
1642
1643 ###############################################################################
1644 # Public targets
1645 #
1646
1647 if (is_component_build) {
1648   component("v8") {
1649     sources = [
1650       "src/v8dll-main.cc",
1651     ]
1652
1653     if (v8_use_snapshot && v8_use_external_startup_data) {
1654       deps = [
1655         ":v8_base",
1656       ]
1657       public_deps = [
1658         ":v8_external_snapshot",
1659       ]
1660     } else if (v8_use_snapshot) {
1661       deps = [
1662         ":v8_base",
1663       ]
1664       # v8_snapshot should be public so downstream targets can declare the
1665       # snapshot file as their input.
1666       public_deps = [
1667         ":v8_snapshot",
1668       ]
1669     } else {
1670       assert(!v8_use_external_startup_data)
1671       deps = [
1672         ":v8_base",
1673         ":v8_nosnapshot",
1674       ]
1675     }
1676
1677     configs -= [ "//build/config/compiler:chromium_code" ]
1678     configs += [ "//build/config/compiler:no_chromium_code" ]
1679     configs += [
1680       ":internal_config",
1681       ":features",
1682       ":toolchain",
1683     ]
1684
1685     public_configs = [ ":external_config" ]
1686
1687     libs = []
1688     if (is_android && current_toolchain != host_toolchain) {
1689       libs += [ "log" ]
1690     }
1691   }
1692 } else {
1693   group("v8") {
1694     if (v8_use_snapshot && v8_use_external_startup_data) {
1695       deps = [
1696         ":v8_base",
1697         ":v8_external_snapshot",
1698       ]
1699     } else if (v8_use_snapshot) {
1700       deps = [
1701         ":v8_base",
1702       ]
1703       public_deps = [
1704         ":v8_snapshot",
1705       ]
1706     } else {
1707       assert(!v8_use_external_startup_data)
1708       deps = [
1709         ":v8_base",
1710         ":v8_nosnapshot",
1711       ]
1712     }
1713
1714     public_configs = [ ":external_config" ]
1715   }
1716 }
1717
1718 if ((current_toolchain == host_toolchain && v8_toolset_for_d8 == "host") ||
1719     (current_toolchain != host_toolchain && v8_toolset_for_d8 == "target")) {
1720   executable("d8") {
1721     sources = [
1722       "src/d8.cc",
1723       "src/d8.h",
1724       "src/startup-data-util.h",
1725       "src/startup-data-util.cc",
1726     ]
1727
1728     configs -= [ "//build/config/compiler:chromium_code" ]
1729     configs += [ "//build/config/compiler:no_chromium_code" ]
1730     configs += [
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",
1735       ":features",
1736       ":toolchain",
1737     ]
1738
1739     deps = [
1740       ":d8_js2c",
1741       ":v8",
1742       ":v8_libplatform",
1743       "//build/config/sanitizers:deps",
1744     ]
1745
1746     # TODO(jochen): Add support for readline and vtunejit.
1747
1748     if (is_posix) {
1749       sources += [ "src/d8-posix.cc" ]
1750     } else if (is_win) {
1751       sources += [ "src/d8-windows.cc" ]
1752     }
1753
1754     if (!is_component_build) {
1755       sources += [
1756         "src/d8-debug.cc",
1757         "src/d8-debug.h",
1758         "$target_gen_dir/d8-js.cc",
1759       ]
1760     }
1761     if (v8_enable_i18n_support) {
1762       deps += [ "//third_party/icu" ]
1763     }
1764   }
1765 }