blob: 7ad8b917091fb7397bb1c492cff0864a328737ed [file] [log] [blame]
Ben Murdoch086aeea2011-05-13 15:57:08 +01001# Copyright 2011 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28{
29 'variables': {
Steve Block9fac8402011-05-12 15:51:54 +010030 'use_system_v8%': 0,
Steve Blocka7e24c12009-10-30 11:49:00 +000031 'msvs_use_common_release': 0,
32 'gcc_version%': 'unknown',
Ben Murdoch257744e2011-11-30 15:57:28 +000033 'v8_compress_startup_data%': 'false',
Steve Block6ded16b2010-05-10 14:33:55 +010034 'v8_target_arch%': '<(target_arch)',
Ben Murdoch257744e2011-11-30 15:57:28 +000035
36 # Setting 'v8_can_use_unaligned_accesses' to 'true' will allow the code
37 # generated by V8 to do unaligned memory access, and setting it to 'false'
38 # will ensure that the generated code will always do aligned memory
39 # accesses. The default value of 'default' will try to determine the correct
40 # setting. Note that for Intel architectures (ia32 and x64) unaligned memory
41 # access is allowed for all CPUs.
42 'v8_can_use_unaligned_accesses%': 'default',
43
44 # Setting 'v8_can_use_vfp_instructions' to 'true' will enable use of ARM VFP
45 # instructions in the V8 generated code. VFP instructions will be enabled
46 # both for the snapshot and for the ARM target. Leaving the default value
47 # of 'false' will avoid VFP instructions in the snapshot and use CPU feature
48 # probing when running on the target.
49 'v8_can_use_vfp_instructions%': 'false',
50
51 # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support for ARM
52 # EABI calling convention where double arguments are passed in VFP
53 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as
54 # well when compiling for the ARM target.
55 'v8_use_arm_eabi_hardfloat%': 'false',
56
Steve Blocka7e24c12009-10-30 11:49:00 +000057 'v8_use_snapshot%': 'true',
Ben Murdoch257744e2011-11-30 15:57:28 +000058 'host_os%': '<(OS)',
Steve Block1e0659c2011-05-24 12:43:12 +010059 'v8_use_liveobjectlist%': 'false',
Steve Blocka7e24c12009-10-30 11:49:00 +000060 },
Steve Block9fac8402011-05-12 15:51:54 +010061 'conditions': [
62 ['use_system_v8==0', {
63 'target_defaults': {
Steve Blocka7e24c12009-10-30 11:49:00 +000064 'defines': [
Steve Block9fac8402011-05-12 15:51:54 +010065 'ENABLE_LOGGING_AND_PROFILING',
66 'ENABLE_DEBUGGER_SUPPORT',
67 'ENABLE_VMSTATE_TRACKING',
Steve Block44f0eee2011-05-26 01:26:41 +010068 'V8_FAST_TLS',
Steve Blocka7e24c12009-10-30 11:49:00 +000069 ],
Steve Block9fac8402011-05-12 15:51:54 +010070 'conditions': [
71 ['OS!="mac"', {
72 # TODO(mark): The OS!="mac" conditional is temporary. It can be
73 # removed once the Mac Chromium build stops setting target_arch to
74 # ia32 and instead sets it to mac. Other checks in this file for
75 # OS=="mac" can be removed at that time as well. This can be cleaned
76 # up once http://crbug.com/44205 is fixed.
Steve Block8defd9f2010-07-08 12:39:36 +010077 'conditions': [
Steve Block9fac8402011-05-12 15:51:54 +010078 ['v8_target_arch=="arm"', {
79 'defines': [
80 'V8_TARGET_ARCH_ARM',
81 ],
Ben Murdoch257744e2011-11-30 15:57:28 +000082 'conditions': [
83 [ 'v8_can_use_unaligned_accesses=="true"', {
84 'defines': [
85 'CAN_USE_UNALIGNED_ACCESSES=1',
86 ],
87 }],
88 [ 'v8_can_use_unaligned_accesses=="false"', {
89 'defines': [
90 'CAN_USE_UNALIGNED_ACCESSES=0',
91 ],
92 }],
93 [ 'v8_can_use_vfp_instructions=="true"', {
94 'defines': [
95 'CAN_USE_VFP_INSTRUCTIONS',
96 ],
97 }],
98 [ 'v8_use_arm_eabi_hardfloat=="true"', {
99 'defines': [
100 'USE_EABI_HARDFLOAT=1',
101 'CAN_USE_VFP_INSTRUCTIONS',
102 ],
103 }],
104 ],
Steve Block8defd9f2010-07-08 12:39:36 +0100105 }],
Steve Block9fac8402011-05-12 15:51:54 +0100106 ['v8_target_arch=="ia32"', {
107 'defines': [
108 'V8_TARGET_ARCH_IA32',
109 ],
110 }],
111 ['v8_target_arch=="x64"', {
112 'defines': [
113 'V8_TARGET_ARCH_X64',
Steve Blocka7e24c12009-10-30 11:49:00 +0000114 ],
115 }],
116 ],
117 }],
Steve Block1e0659c2011-05-24 12:43:12 +0100118 ['v8_use_liveobjectlist=="true"', {
119 'defines': [
120 'ENABLE_DEBUGGER_SUPPORT',
121 'INSPECTOR',
122 'OBJECT_PRINT',
123 'LIVEOBJECTLIST',
124 ],
125 }],
Ben Murdoch257744e2011-11-30 15:57:28 +0000126 ['v8_compress_startup_data=="bz2"', {
127 'defines': [
128 'COMPRESS_STARTUP_DATA_BZ2',
129 ],
130 }],
Steve Block9fac8402011-05-12 15:51:54 +0100131 ],
132 'configurations': {
133 'Debug': {
134 'defines': [
135 'DEBUG',
136 '_DEBUG',
137 'ENABLE_DISASSEMBLER',
138 'V8_ENABLE_CHECKS',
139 'OBJECT_PRINT',
140 ],
Steve Blocka7e24c12009-10-30 11:49:00 +0000141 'msvs_settings': {
142 'VCCLCompilerTool': {
Steve Block9fac8402011-05-12 15:51:54 +0100143 'Optimization': '0',
144
Steve Block8defd9f2010-07-08 12:39:36 +0100145 'conditions': [
146 ['OS=="win" and component=="shared_library"', {
Steve Block9fac8402011-05-12 15:51:54 +0100147 'RuntimeLibrary': '3', # /MDd
Steve Block8defd9f2010-07-08 12:39:36 +0100148 }, {
Steve Block9fac8402011-05-12 15:51:54 +0100149 'RuntimeLibrary': '1', # /MTd
Steve Block8defd9f2010-07-08 12:39:36 +0100150 }],
151 ],
Steve Blocka7e24c12009-10-30 11:49:00 +0000152 },
153 'VCLinkerTool': {
Steve Block9fac8402011-05-12 15:51:54 +0100154 'LinkIncremental': '2',
Steve Blocka7e24c12009-10-30 11:49:00 +0000155 },
156 },
Steve Block9fac8402011-05-12 15:51:54 +0100157 'conditions': [
158 ['OS=="freebsd" or OS=="openbsd"', {
159 'cflags': [ '-I/usr/local/include' ],
160 }],
161 ],
162 },
163 'Release': {
164 'conditions': [
165 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
166 'cflags!': [
167 '-O2',
168 '-Os',
169 ],
170 'cflags': [
171 '-fomit-frame-pointer',
172 '-O3',
173 ],
174 'conditions': [
175 [ 'gcc_version==44', {
176 'cflags': [
177 # Avoid crashes with gcc 4.4 in the v8 test suite.
178 '-fno-tree-vrp',
179 ],
180 }],
181 ],
182 }],
183 ['OS=="freebsd" or OS=="openbsd"', {
184 'cflags': [ '-I/usr/local/include' ],
185 }],
186 ['OS=="mac"', {
187 'xcode_settings': {
188 'GCC_OPTIMIZATION_LEVEL': '3', # -O3
189
190 # -fstrict-aliasing. Mainline gcc
191 # enables this at -O2 and above,
192 # but Apple gcc does not unless it
193 # is specified explicitly.
194 'GCC_STRICT_ALIASING': 'YES',
195 },
196 }],
197 ['OS=="win"', {
198 'msvs_configuration_attributes': {
199 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)',
200 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
201 'CharacterSet': '1',
202 },
203 'msvs_settings': {
204 'VCCLCompilerTool': {
205 'Optimization': '2',
206 'InlineFunctionExpansion': '2',
207 'EnableIntrinsicFunctions': 'true',
208 'FavorSizeOrSpeed': '0',
209 'OmitFramePointers': 'true',
210 'StringPooling': 'true',
211
212 'conditions': [
213 ['OS=="win" and component=="shared_library"', {
214 'RuntimeLibrary': '2', #/MD
215 }, {
216 'RuntimeLibrary': '0', #/MT
217 }],
218 ],
219 },
220 'VCLinkerTool': {
221 'LinkIncremental': '1',
222 'OptimizeReferences': '2',
223 'OptimizeForWindows98': '1',
224 'EnableCOMDATFolding': '2',
225 },
226 },
227 }],
228 ],
229 },
Steve Blocka7e24c12009-10-30 11:49:00 +0000230 },
Steve Block9fac8402011-05-12 15:51:54 +0100231 },
232 'targets': [
Steve Blocka7e24c12009-10-30 11:49:00 +0000233 {
Steve Block9fac8402011-05-12 15:51:54 +0100234 'target_name': 'v8',
235 'conditions': [
236 ['v8_use_snapshot=="true"', {
237 'dependencies': ['v8_snapshot'],
238 },
239 {
240 'dependencies': ['v8_nosnapshot'],
241 }],
Ben Murdoch257744e2011-11-30 15:57:28 +0000242 ['component=="shared_library"', {
Steve Block9fac8402011-05-12 15:51:54 +0100243 'type': '<(component)',
244 'sources': [
Ben Murdoch257744e2011-11-30 15:57:28 +0000245 # Note: on non-Windows we still build this file so that gyp
246 # has some sources to link into the component.
Steve Block9fac8402011-05-12 15:51:54 +0100247 '../../src/v8dll-main.cc',
248 ],
Ben Murdoch257744e2011-11-30 15:57:28 +0000249 'conditions': [
250 ['OS=="win"', {
251 'defines': [
252 'BUILDING_V8_SHARED',
253 ],
254 'direct_dependent_settings': {
255 'defines': [
256 'USING_V8_SHARED',
257 ],
258 },
259 }, {
260 'defines': [
261 'V8_SHARED',
262 ],
263 'direct_dependent_settings': {
264 'defines': [
265 'V8_SHARED',
266 ],
267 },
268 }],
Steve Block9fac8402011-05-12 15:51:54 +0100269 ],
Steve Block9fac8402011-05-12 15:51:54 +0100270 },
271 {
272 'type': 'none',
273 }],
Steve Block8defd9f2010-07-08 12:39:36 +0100274 ],
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100275 'direct_dependent_settings': {
Steve Block9fac8402011-05-12 15:51:54 +0100276 'include_dirs': [
277 '../../include',
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100278 ],
279 },
Steve Block8defd9f2010-07-08 12:39:36 +0100280 },
281 {
Steve Block9fac8402011-05-12 15:51:54 +0100282 'target_name': 'v8_snapshot',
283 'type': '<(library)',
284 'conditions': [
Ben Murdoch257744e2011-11-30 15:57:28 +0000285 ['component=="shared_library"', {
286 'conditions': [
287 ['OS=="win"', {
288 'defines': [
289 'BUILDING_V8_SHARED',
290 ],
291 'direct_dependent_settings': {
292 'defines': [
293 'USING_V8_SHARED',
294 ],
295 },
296 }, {
297 'defines': [
298 'V8_SHARED',
299 ],
300 'direct_dependent_settings': {
301 'defines': [
302 'V8_SHARED',
303 ],
304 },
305 }],
Steve Block9fac8402011-05-12 15:51:54 +0100306 ],
307 }],
308 ],
309 'dependencies': [
310 'mksnapshot#host',
311 'js2c#host',
312 'v8_base',
313 ],
314 'include_dirs+': [
315 '../../src',
316 ],
317 'sources': [
Ben Murdoch257744e2011-11-30 15:57:28 +0000318 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
319 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100320 '<(INTERMEDIATE_DIR)/snapshot.cc',
321 ],
322 'actions': [
323 {
324 'action_name': 'run_mksnapshot',
325 'inputs': [
326 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)',
327 ],
328 'outputs': [
329 '<(INTERMEDIATE_DIR)/snapshot.cc',
330 ],
Ben Murdoch257744e2011-11-30 15:57:28 +0000331 'variables': {
332 'mksnapshot_flags': [],
333 },
334 'conditions': [
335 ['v8_target_arch=="arm"', {
336 # The following rules should be consistent with chromium's
337 # common.gypi and V8's runtime rule to ensure they all generate
338 # the same correct machine code. The following issue is about
339 # V8's runtime rule about vfpv3 and neon:
340 # http://code.google.com/p/v8/issues/detail?id=914
341 'conditions': [
342 ['armv7==1', {
343 # The ARM Architecture Manual mandates VFPv3 if NEON is
344 # available.
345 # The current V8 doesn't use d16-d31, so for vfpv3-d16, we can
346 # also enable vfp3 for the better performance.
347 'conditions': [
348 ['arm_neon!=1 and arm_fpu!="vfpv3" and arm_fpu!="vfpv3-d16"', {
349 'variables': {
350 'mksnapshot_flags': [
351 '--noenable_vfp3',
352 ],
353 },
354 }],
355 ],
356 },{ # else: armv7!=1
357 'variables': {
358 'mksnapshot_flags': [
359 '--noenable_armv7',
360 '--noenable_vfp3',
361 ],
362 },
363 }],
364 ],
365 }],
366 ],
367 'action': [
368 '<@(_inputs)',
369 '<@(mksnapshot_flags)',
370 '<@(_outputs)'
371 ],
Steve Block9fac8402011-05-12 15:51:54 +0100372 },
373 ],
374 },
375 {
376 'target_name': 'v8_nosnapshot',
377 'type': '<(library)',
378 'toolsets': ['host', 'target'],
379 'dependencies': [
380 'js2c#host',
381 'v8_base',
382 ],
383 'include_dirs+': [
384 '../../src',
385 ],
386 'sources': [
387 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
Ben Murdoch257744e2011-11-30 15:57:28 +0000388 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100389 '../../src/snapshot-empty.cc',
Steve Blocka7e24c12009-10-30 11:49:00 +0000390 ],
Steve Blockd0582a62009-12-15 09:54:21 +0000391 'conditions': [
392 # The ARM assembler assumes the host is 32 bits, so force building
393 # 32-bit host tools.
Steve Block9fac8402011-05-12 15:51:54 +0100394 ['v8_target_arch=="arm" and host_arch=="x64" and _toolset=="host"', {
395 'cflags': ['-m32'],
396 'ldflags': ['-m32'],
397 }],
Ben Murdoch257744e2011-11-30 15:57:28 +0000398 ['component=="shared_library"', {
Steve Block9fac8402011-05-12 15:51:54 +0100399 'defines': [
400 'BUILDING_V8_SHARED',
Ben Murdoch257744e2011-11-30 15:57:28 +0000401 'V8_SHARED',
Steve Block9fac8402011-05-12 15:51:54 +0100402 ],
403 }],
404 ]
405 },
406 {
407 'target_name': 'v8_base',
408 'type': '<(library)',
409 'toolsets': ['host', 'target'],
410 'include_dirs+': [
411 '../../src',
412 ],
413 'sources': [
414 '../../src/accessors.cc',
415 '../../src/accessors.h',
416 '../../src/allocation.cc',
417 '../../src/allocation.h',
418 '../../src/api.cc',
419 '../../src/api.h',
420 '../../src/apiutils.h',
421 '../../src/arguments.h',
422 '../../src/assembler.cc',
423 '../../src/assembler.h',
424 '../../src/ast.cc',
425 '../../src/ast-inl.h',
426 '../../src/ast.h',
427 '../../src/atomicops_internals_x86_gcc.cc',
428 '../../src/bignum.cc',
429 '../../src/bignum.h',
430 '../../src/bignum-dtoa.cc',
431 '../../src/bignum-dtoa.h',
432 '../../src/bootstrapper.cc',
433 '../../src/bootstrapper.h',
434 '../../src/builtins.cc',
435 '../../src/builtins.h',
436 '../../src/bytecodes-irregexp.h',
437 '../../src/cached-powers.cc',
438 '../../src/cached-powers.h',
439 '../../src/char-predicates-inl.h',
440 '../../src/char-predicates.h',
441 '../../src/checks.cc',
442 '../../src/checks.h',
443 '../../src/circular-queue-inl.h',
444 '../../src/circular-queue.cc',
445 '../../src/circular-queue.h',
446 '../../src/code-stubs.cc',
447 '../../src/code-stubs.h',
448 '../../src/code.h',
449 '../../src/codegen-inl.h',
450 '../../src/codegen.cc',
451 '../../src/codegen.h',
452 '../../src/compilation-cache.cc',
453 '../../src/compilation-cache.h',
454 '../../src/compiler.cc',
455 '../../src/compiler.h',
456 '../../src/contexts.cc',
457 '../../src/contexts.h',
458 '../../src/conversions-inl.h',
459 '../../src/conversions.cc',
460 '../../src/conversions.h',
461 '../../src/counters.cc',
462 '../../src/counters.h',
463 '../../src/cpu.h',
464 '../../src/cpu-profiler-inl.h',
465 '../../src/cpu-profiler.cc',
466 '../../src/cpu-profiler.h',
467 '../../src/data-flow.cc',
468 '../../src/data-flow.h',
469 '../../src/dateparser.cc',
470 '../../src/dateparser.h',
471 '../../src/dateparser-inl.h',
472 '../../src/debug.cc',
473 '../../src/debug.h',
474 '../../src/debug-agent.cc',
475 '../../src/debug-agent.h',
476 '../../src/deoptimizer.cc',
477 '../../src/deoptimizer.h',
478 '../../src/disasm.h',
479 '../../src/disassembler.cc',
480 '../../src/disassembler.h',
481 '../../src/dtoa.cc',
482 '../../src/dtoa.h',
483 '../../src/diy-fp.cc',
484 '../../src/diy-fp.h',
485 '../../src/double.h',
486 '../../src/execution.cc',
487 '../../src/execution.h',
488 '../../src/factory.cc',
489 '../../src/factory.h',
490 '../../src/fast-dtoa.cc',
491 '../../src/fast-dtoa.h',
492 '../../src/flag-definitions.h',
493 '../../src/fixed-dtoa.cc',
494 '../../src/fixed-dtoa.h',
495 '../../src/flags.cc',
496 '../../src/flags.h',
Steve Block9fac8402011-05-12 15:51:54 +0100497 '../../src/frames-inl.h',
498 '../../src/frames.cc',
499 '../../src/frames.h',
500 '../../src/full-codegen.cc',
501 '../../src/full-codegen.h',
502 '../../src/func-name-inferrer.cc',
503 '../../src/func-name-inferrer.h',
504 '../../src/global-handles.cc',
505 '../../src/global-handles.h',
506 '../../src/globals.h',
507 '../../src/handles-inl.h',
508 '../../src/handles.cc',
509 '../../src/handles.h',
510 '../../src/hashmap.cc',
511 '../../src/hashmap.h',
512 '../../src/heap-inl.h',
513 '../../src/heap.cc',
514 '../../src/heap.h',
515 '../../src/heap-profiler.cc',
516 '../../src/heap-profiler.h',
517 '../../src/hydrogen.cc',
518 '../../src/hydrogen.h',
519 '../../src/hydrogen-instructions.cc',
520 '../../src/hydrogen-instructions.h',
521 '../../src/ic-inl.h',
522 '../../src/ic.cc',
523 '../../src/ic.h',
Steve Block1e0659c2011-05-24 12:43:12 +0100524 '../../src/inspector.cc',
525 '../../src/inspector.h',
Steve Block9fac8402011-05-12 15:51:54 +0100526 '../../src/interpreter-irregexp.cc',
527 '../../src/interpreter-irregexp.h',
Ben Murdoch257744e2011-11-30 15:57:28 +0000528 '../../src/json-parser.cc',
529 '../../src/json-parser.h',
Steve Block9fac8402011-05-12 15:51:54 +0100530 '../../src/jsregexp.cc',
531 '../../src/jsregexp.h',
Steve Block44f0eee2011-05-26 01:26:41 +0100532 '../../src/isolate.cc',
533 '../../src/isolate.h',
Steve Block9fac8402011-05-12 15:51:54 +0100534 '../../src/list-inl.h',
535 '../../src/list.h',
Ben Murdoch086aeea2011-05-13 15:57:08 +0100536 '../../src/lithium.cc',
537 '../../src/lithium.h',
Steve Block9fac8402011-05-12 15:51:54 +0100538 '../../src/lithium-allocator.cc',
539 '../../src/lithium-allocator.h',
Steve Block1e0659c2011-05-24 12:43:12 +0100540 '../../src/lithium-allocator-inl.h',
Steve Block9fac8402011-05-12 15:51:54 +0100541 '../../src/liveedit.cc',
542 '../../src/liveedit.h',
Steve Block1e0659c2011-05-24 12:43:12 +0100543 '../../src/liveobjectlist-inl.h',
544 '../../src/liveobjectlist.cc',
545 '../../src/liveobjectlist.h',
Steve Block9fac8402011-05-12 15:51:54 +0100546 '../../src/log-inl.h',
547 '../../src/log-utils.cc',
548 '../../src/log-utils.h',
549 '../../src/log.cc',
550 '../../src/log.h',
551 '../../src/macro-assembler.h',
552 '../../src/mark-compact.cc',
553 '../../src/mark-compact.h',
Steve Block9fac8402011-05-12 15:51:54 +0100554 '../../src/messages.cc',
555 '../../src/messages.h',
556 '../../src/natives.h',
557 '../../src/objects-debug.cc',
558 '../../src/objects-printer.cc',
559 '../../src/objects-inl.h',
560 '../../src/objects-visiting.cc',
561 '../../src/objects-visiting.h',
562 '../../src/objects.cc',
563 '../../src/objects.h',
Steve Block9fac8402011-05-12 15:51:54 +0100564 '../../src/parser.cc',
565 '../../src/parser.h',
Steve Block44f0eee2011-05-26 01:26:41 +0100566 '../../src/platform-tls-mac.h',
567 '../../src/platform-tls-win32.h',
568 '../../src/platform-tls.h',
Steve Block9fac8402011-05-12 15:51:54 +0100569 '../../src/platform.h',
Ben Murdoch257744e2011-11-30 15:57:28 +0000570 '../../src/preparse-data-format.h',
Steve Block9fac8402011-05-12 15:51:54 +0100571 '../../src/preparse-data.cc',
572 '../../src/preparse-data.h',
573 '../../src/preparser.cc',
574 '../../src/preparser.h',
575 '../../src/prettyprinter.cc',
576 '../../src/prettyprinter.h',
577 '../../src/property.cc',
578 '../../src/property.h',
579 '../../src/profile-generator-inl.h',
580 '../../src/profile-generator.cc',
581 '../../src/profile-generator.h',
582 '../../src/regexp-macro-assembler-irregexp-inl.h',
583 '../../src/regexp-macro-assembler-irregexp.cc',
584 '../../src/regexp-macro-assembler-irregexp.h',
585 '../../src/regexp-macro-assembler-tracer.cc',
586 '../../src/regexp-macro-assembler-tracer.h',
587 '../../src/regexp-macro-assembler.cc',
588 '../../src/regexp-macro-assembler.h',
589 '../../src/regexp-stack.cc',
590 '../../src/regexp-stack.h',
Steve Block9fac8402011-05-12 15:51:54 +0100591 '../../src/rewriter.cc',
592 '../../src/rewriter.h',
593 '../../src/runtime.cc',
594 '../../src/runtime.h',
595 '../../src/runtime-profiler.cc',
596 '../../src/runtime-profiler.h',
597 '../../src/safepoint-table.cc',
598 '../../src/safepoint-table.h',
599 '../../src/scanner-base.cc',
600 '../../src/scanner-base.h',
601 '../../src/scanner.cc',
602 '../../src/scanner.h',
603 '../../src/scopeinfo.cc',
604 '../../src/scopeinfo.h',
605 '../../src/scopes.cc',
606 '../../src/scopes.h',
607 '../../src/serialize.cc',
608 '../../src/serialize.h',
609 '../../src/shell.h',
Steve Block44f0eee2011-05-26 01:26:41 +0100610 '../../src/small-pointer-list.h',
Steve Block9fac8402011-05-12 15:51:54 +0100611 '../../src/smart-pointer.h',
612 '../../src/snapshot-common.cc',
613 '../../src/snapshot.h',
614 '../../src/spaces-inl.h',
615 '../../src/spaces.cc',
616 '../../src/spaces.h',
617 '../../src/string-search.cc',
618 '../../src/string-search.h',
619 '../../src/string-stream.cc',
620 '../../src/string-stream.h',
621 '../../src/strtod.cc',
622 '../../src/strtod.h',
623 '../../src/stub-cache.cc',
624 '../../src/stub-cache.h',
625 '../../src/token.cc',
626 '../../src/token.h',
Steve Block9fac8402011-05-12 15:51:54 +0100627 '../../src/type-info.cc',
628 '../../src/type-info.h',
629 '../../src/unbound-queue-inl.h',
630 '../../src/unbound-queue.h',
631 '../../src/unicode-inl.h',
632 '../../src/unicode.cc',
633 '../../src/unicode.h',
Ben Murdoch257744e2011-11-30 15:57:28 +0000634 '../../src/utils-inl.h',
Steve Block9fac8402011-05-12 15:51:54 +0100635 '../../src/utils.cc',
636 '../../src/utils.h',
637 '../../src/v8-counters.cc',
638 '../../src/v8-counters.h',
639 '../../src/v8.cc',
640 '../../src/v8.h',
641 '../../src/v8checks.h',
642 '../../src/v8globals.h',
Steve Block44f0eee2011-05-26 01:26:41 +0100643 '../../src/v8memory.h',
Steve Block9fac8402011-05-12 15:51:54 +0100644 '../../src/v8threads.cc',
645 '../../src/v8threads.h',
646 '../../src/v8utils.h',
647 '../../src/variables.cc',
648 '../../src/variables.h',
649 '../../src/version.cc',
650 '../../src/version.h',
Steve Block9fac8402011-05-12 15:51:54 +0100651 '../../src/vm-state-inl.h',
652 '../../src/vm-state.h',
653 '../../src/zone-inl.h',
654 '../../src/zone.cc',
655 '../../src/zone.h',
656 '../../src/extensions/externalize-string-extension.cc',
657 '../../src/extensions/externalize-string-extension.h',
658 '../../src/extensions/gc-extension.cc',
659 '../../src/extensions/gc-extension.h',
660 ],
661 'conditions': [
662 ['v8_target_arch=="arm"', {
663 'include_dirs+': [
664 '../../src/arm',
665 ],
666 'sources': [
Steve Block9fac8402011-05-12 15:51:54 +0100667 '../../src/arm/assembler-arm-inl.h',
668 '../../src/arm/assembler-arm.cc',
669 '../../src/arm/assembler-arm.h',
670 '../../src/arm/builtins-arm.cc',
671 '../../src/arm/code-stubs-arm.cc',
672 '../../src/arm/code-stubs-arm.h',
673 '../../src/arm/codegen-arm.cc',
674 '../../src/arm/codegen-arm.h',
675 '../../src/arm/constants-arm.h',
676 '../../src/arm/constants-arm.cc',
677 '../../src/arm/cpu-arm.cc',
678 '../../src/arm/debug-arm.cc',
679 '../../src/arm/deoptimizer-arm.cc',
680 '../../src/arm/disasm-arm.cc',
681 '../../src/arm/frames-arm.cc',
682 '../../src/arm/frames-arm.h',
683 '../../src/arm/full-codegen-arm.cc',
684 '../../src/arm/ic-arm.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100685 '../../src/arm/lithium-arm.cc',
686 '../../src/arm/lithium-arm.h',
Ben Murdochb8e0da22011-05-16 14:20:40 +0100687 '../../src/arm/lithium-codegen-arm.cc',
688 '../../src/arm/lithium-codegen-arm.h',
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100689 '../../src/arm/lithium-gap-resolver-arm.cc',
690 '../../src/arm/lithium-gap-resolver-arm.h',
Steve Block9fac8402011-05-12 15:51:54 +0100691 '../../src/arm/macro-assembler-arm.cc',
692 '../../src/arm/macro-assembler-arm.h',
693 '../../src/arm/regexp-macro-assembler-arm.cc',
694 '../../src/arm/regexp-macro-assembler-arm.h',
Steve Block9fac8402011-05-12 15:51:54 +0100695 '../../src/arm/simulator-arm.cc',
696 '../../src/arm/stub-cache-arm.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100697 ],
698 'conditions': [
699 # The ARM assembler assumes the host is 32 bits,
700 # so force building 32-bit host tools.
701 ['host_arch=="x64" and _toolset=="host"', {
702 'cflags': ['-m32'],
703 'ldflags': ['-m32'],
704 }]
705 ]
706 }],
707 ['v8_target_arch=="ia32" or v8_target_arch=="mac" or OS=="mac"', {
708 'include_dirs+': [
709 '../../src/ia32',
710 ],
711 'sources': [
Steve Block9fac8402011-05-12 15:51:54 +0100712 '../../src/ia32/assembler-ia32-inl.h',
713 '../../src/ia32/assembler-ia32.cc',
714 '../../src/ia32/assembler-ia32.h',
715 '../../src/ia32/builtins-ia32.cc',
716 '../../src/ia32/code-stubs-ia32.cc',
717 '../../src/ia32/code-stubs-ia32.h',
718 '../../src/ia32/codegen-ia32.cc',
719 '../../src/ia32/codegen-ia32.h',
720 '../../src/ia32/cpu-ia32.cc',
721 '../../src/ia32/debug-ia32.cc',
722 '../../src/ia32/deoptimizer-ia32.cc',
723 '../../src/ia32/disasm-ia32.cc',
724 '../../src/ia32/frames-ia32.cc',
725 '../../src/ia32/frames-ia32.h',
726 '../../src/ia32/full-codegen-ia32.cc',
727 '../../src/ia32/ic-ia32.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100728 '../../src/ia32/lithium-codegen-ia32.cc',
729 '../../src/ia32/lithium-codegen-ia32.h',
Ben Murdochb8e0da22011-05-16 14:20:40 +0100730 '../../src/ia32/lithium-gap-resolver-ia32.cc',
731 '../../src/ia32/lithium-gap-resolver-ia32.h',
Steve Block9fac8402011-05-12 15:51:54 +0100732 '../../src/ia32/lithium-ia32.cc',
733 '../../src/ia32/lithium-ia32.h',
734 '../../src/ia32/macro-assembler-ia32.cc',
735 '../../src/ia32/macro-assembler-ia32.h',
736 '../../src/ia32/regexp-macro-assembler-ia32.cc',
737 '../../src/ia32/regexp-macro-assembler-ia32.h',
Steve Block9fac8402011-05-12 15:51:54 +0100738 '../../src/ia32/stub-cache-ia32.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100739 ],
740 }],
741 ['v8_target_arch=="x64" or v8_target_arch=="mac" or OS=="mac"', {
742 'include_dirs+': [
743 '../../src/x64',
744 ],
745 'sources': [
Steve Block9fac8402011-05-12 15:51:54 +0100746 '../../src/x64/assembler-x64-inl.h',
747 '../../src/x64/assembler-x64.cc',
748 '../../src/x64/assembler-x64.h',
749 '../../src/x64/builtins-x64.cc',
750 '../../src/x64/code-stubs-x64.cc',
751 '../../src/x64/code-stubs-x64.h',
752 '../../src/x64/codegen-x64.cc',
753 '../../src/x64/codegen-x64.h',
754 '../../src/x64/cpu-x64.cc',
755 '../../src/x64/debug-x64.cc',
756 '../../src/x64/deoptimizer-x64.cc',
757 '../../src/x64/disasm-x64.cc',
758 '../../src/x64/frames-x64.cc',
759 '../../src/x64/frames-x64.h',
760 '../../src/x64/full-codegen-x64.cc',
761 '../../src/x64/ic-x64.cc',
Ben Murdochb8e0da22011-05-16 14:20:40 +0100762 '../../src/x64/lithium-codegen-x64.cc',
Ben Murdoch086aeea2011-05-13 15:57:08 +0100763 '../../src/x64/lithium-codegen-x64.h',
Steve Block1e0659c2011-05-24 12:43:12 +0100764 '../../src/x64/lithium-gap-resolver-x64.cc',
765 '../../src/x64/lithium-gap-resolver-x64.h',
Ben Murdoch086aeea2011-05-13 15:57:08 +0100766 '../../src/x64/lithium-x64.cc',
767 '../../src/x64/lithium-x64.h',
Steve Block9fac8402011-05-12 15:51:54 +0100768 '../../src/x64/macro-assembler-x64.cc',
769 '../../src/x64/macro-assembler-x64.h',
770 '../../src/x64/regexp-macro-assembler-x64.cc',
771 '../../src/x64/regexp-macro-assembler-x64.h',
Steve Block9fac8402011-05-12 15:51:54 +0100772 '../../src/x64/stub-cache-x64.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100773 ],
774 }],
775 ['OS=="linux"', {
776 'link_settings': {
777 'libraries': [
778 # Needed for clock_gettime() used by src/platform-linux.cc.
779 '-lrt',
Ben Murdoch257744e2011-11-30 15:57:28 +0000780 ],
781 'conditions': [
782 ['v8_compress_startup_data=="bz2"', {
783 'libraries': [
784 '-lbz2',
785 ]}],
786 ],
787 },
Steve Block9fac8402011-05-12 15:51:54 +0100788 'sources': [
789 '../../src/platform-linux.cc',
790 '../../src/platform-posix.cc'
791 ],
792 }
793 ],
Ben Murdoch257744e2011-11-30 15:57:28 +0000794 ['OS=="android"', {
795 'sources': [
796 '../../src/platform-posix.cc',
797 ],
798 'conditions': [
799 ['host_os=="mac" and _toolset!="target"', {
800 'sources': [
801 '../../src/platform-macos.cc'
802 ]
803 }, {
804 'sources': [
805 '../../src/platform-linux.cc'
806 ]
807 }],
808 ['_toolset=="target"', {
809 'link_settings': {
810 'libraries': [
811 '-llog',
812 ],
813 }
814 }],
815 ],
816 },
817 ],
Steve Block9fac8402011-05-12 15:51:54 +0100818 ['OS=="freebsd"', {
819 'link_settings': {
820 'libraries': [
821 '-L/usr/local/lib -lexecinfo',
822 ]},
823 'sources': [
824 '../../src/platform-freebsd.cc',
825 '../../src/platform-posix.cc'
826 ],
827 }
828 ],
829 ['OS=="openbsd"', {
830 'link_settings': {
831 'libraries': [
832 '-L/usr/local/lib -lexecinfo',
833 ]},
834 'sources': [
835 '../../src/platform-openbsd.cc',
836 '../../src/platform-posix.cc'
837 ],
838 }
839 ],
840 ['OS=="mac"', {
841 'sources': [
842 '../../src/platform-macos.cc',
843 '../../src/platform-posix.cc'
844 ]},
845 ],
846 ['OS=="win"', {
847 'sources': [
848 '../../src/platform-win32.cc',
849 ],
Steve Block1e0659c2011-05-24 12:43:12 +0100850 'msvs_disabled_warnings': [4351, 4355, 4800],
Steve Block9fac8402011-05-12 15:51:54 +0100851 'link_settings': {
852 'libraries': [ '-lwinmm.lib' ],
853 },
854 }],
Ben Murdoch257744e2011-11-30 15:57:28 +0000855 ['component=="shared_library"', {
Steve Block9fac8402011-05-12 15:51:54 +0100856 'defines': [
Ben Murdoch257744e2011-11-30 15:57:28 +0000857 'BUILDING_V8_SHARED',
858 'V8_SHARED',
Steve Block9fac8402011-05-12 15:51:54 +0100859 ],
860 }],
861 ],
862 },
863 {
864 'target_name': 'js2c',
865 'type': 'none',
866 'toolsets': ['host'],
867 'variables': {
868 'library_files': [
869 '../../src/runtime.js',
870 '../../src/v8natives.js',
871 '../../src/array.js',
872 '../../src/string.js',
873 '../../src/uri.js',
874 '../../src/math.js',
875 '../../src/messages.js',
876 '../../src/apinatives.js',
877 '../../src/debug-debugger.js',
878 '../../src/mirror-debugger.js',
879 '../../src/liveedit-debugger.js',
880 '../../src/date.js',
881 '../../src/json.js',
882 '../../src/regexp.js',
883 '../../src/macros.py',
884 ],
Ben Murdoch257744e2011-11-30 15:57:28 +0000885 'experimental_library_files': [
886 '../../src/proxy.js',
887 '../../src/macros.py',
888 ],
Steve Block9fac8402011-05-12 15:51:54 +0100889 },
890 'actions': [
891 {
892 'action_name': 'js2c',
893 'inputs': [
894 '../../tools/js2c.py',
895 '<@(library_files)',
896 ],
897 'outputs': [
898 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
Steve Block9fac8402011-05-12 15:51:54 +0100899 ],
900 'action': [
901 'python',
902 '../../tools/js2c.py',
903 '<@(_outputs)',
904 'CORE',
905 '<@(library_files)'
906 ],
907 },
Ben Murdoch257744e2011-11-30 15:57:28 +0000908 {
909 'action_name': 'js2c_experimental',
910 'inputs': [
911 '../../tools/js2c.py',
912 '<@(experimental_library_files)',
913 ],
914 'outputs': [
915 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
916 ],
917 'action': [
918 'python',
919 '../../tools/js2c.py',
920 '<@(_outputs)',
921 'EXPERIMENTAL',
922 '<@(experimental_library_files)'
923 ],
924 },
Steve Block9fac8402011-05-12 15:51:54 +0100925 ],
926 },
927 {
928 'target_name': 'mksnapshot',
929 'type': 'executable',
930 'toolsets': ['host'],
931 'dependencies': [
932 'v8_nosnapshot',
933 ],
934 'include_dirs+': [
935 '../../src',
936 ],
937 'sources': [
938 '../../src/mksnapshot.cc',
939 ],
940 'conditions': [
941 # The ARM assembler assumes the host is 32 bits, so force building
942 # 32-bit host tools.
943 ['v8_target_arch=="arm" and host_arch=="x64" and _toolset=="host"', {
Steve Blockd0582a62009-12-15 09:54:21 +0000944 'cflags': ['-m32'],
945 'ldflags': ['-m32'],
Ben Murdoch257744e2011-11-30 15:57:28 +0000946 }],
947 ['v8_compress_startup_data=="bz2"', {
948 'libraries': [
949 '-lbz2',
950 ]}],
Steve Blockd0582a62009-12-15 09:54:21 +0000951 ]
Steve Block9fac8402011-05-12 15:51:54 +0100952 },
Steve Blocka7e24c12009-10-30 11:49:00 +0000953 {
Steve Block9fac8402011-05-12 15:51:54 +0100954 'target_name': 'v8_shell',
955 'type': 'executable',
956 'dependencies': [
957 'v8'
Steve Blocka7e24c12009-10-30 11:49:00 +0000958 ],
Steve Block9fac8402011-05-12 15:51:54 +0100959 'sources': [
960 '../../samples/shell.cc',
Steve Blocka7e24c12009-10-30 11:49:00 +0000961 ],
Steve Block9fac8402011-05-12 15:51:54 +0100962 'conditions': [
963 ['OS=="win"', {
964 # This could be gotten by not setting chromium_code, if that's OK.
965 'defines': ['_CRT_SECURE_NO_WARNINGS'],
966 }],
Ben Murdoch257744e2011-11-30 15:57:28 +0000967 ['v8_compress_startup_data=="bz2"', {
968 'libraries': [
969 '-lbz2',
970 ]}],
Steve Blocka7e24c12009-10-30 11:49:00 +0000971 ],
972 },
973 ],
Steve Block9fac8402011-05-12 15:51:54 +0100974 }, { # use_system_v8 != 0
975 'targets': [
976 {
977 'target_name': 'v8',
978 'type': 'settings',
979 'link_settings': {
980 'libraries': [
981 '-lv8',
982 ],
983 },
984 },
985 {
986 'target_name': 'v8_shell',
987 'type': 'none',
988 'dependencies': [
989 'v8'
990 ],
991 },
Steve Blocka7e24c12009-10-30 11:49:00 +0000992 ],
Steve Block9fac8402011-05-12 15:51:54 +0100993 }],
Steve Blocka7e24c12009-10-30 11:49:00 +0000994 ],
995}