blob: 097abc04652fc39de72fc094ea08c5c2c670efdf [file] [log] [blame]
ulan@chromium.org2efb9002012-01-19 15:36:35 +00001# Copyright 2012 the V8 project authors. All rights reserved.
ager@chromium.org5f0c45f2010-12-17 08:51:21 +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{
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000029 'variables': {
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +000030 'v8_code': 1,
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000031 'console%': '',
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +000032 # Enable support for Intel VTune. Supported on ia32/x64 only
33 'v8_enable_vtunejit%': 0,
machenbach@chromium.org528ce022013-09-23 14:09:36 +000034 'v8_enable_i18n_support%': 1,
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000035 },
danno@chromium.orgbee51992013-07-10 14:57:15 +000036 'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000037 'targets': [
38 {
39 'target_name': 'd8',
40 'type': 'executable',
41 'dependencies': [
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000042 '../tools/gyp/v8.gyp:v8',
43 ],
ricow@chromium.org4668a2c2011-08-29 10:41:00 +000044 # Generated source files need this explicitly:
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000045 'include_dirs+': [
46 '../src',
47 ],
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000048 'sources': [
49 'd8.cc',
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000050 ],
51 'conditions': [
jkummerow@chromium.org59297c72013-01-09 16:32:23 +000052 [ 'console=="readline"', {
53 'libraries': [ '-lreadline', ],
54 'sources': [ 'd8-readline.cc' ],
55 }],
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000056 [ 'component!="shared_library"', {
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000057 'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ],
58 'conditions': [
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000059 [ 'want_separate_host_toolset==1', {
60 'dependencies': [
61 'd8_js2c#host',
62 ],
63 }, {
64 'dependencies': [
65 'd8_js2c',
66 ],
67 }],
rossberg@chromium.orgfab14982012-01-05 15:02:15 +000068 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \
69 or OS=="openbsd" or OS=="solaris" or OS=="android")', {
svenpanne@chromium.org84bcc552011-07-18 09:50:57 +000070 'sources': [ 'd8-posix.cc', ]
71 }],
72 [ 'OS=="win"', {
73 'sources': [ 'd8-windows.cc', ]
74 }],
75 ],
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000076 }],
mstarzinger@chromium.orge27d6172013-04-17 11:51:44 +000077 ['v8_enable_vtunejit==1', {
78 'dependencies': [
79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune',
80 ],
81 }],
danno@chromium.orgbee51992013-07-10 14:57:15 +000082 ['v8_enable_i18n_support==1', {
danno@chromium.orgbee51992013-07-10 14:57:15 +000083 'dependencies': [
machenbach@chromium.org528ce022013-09-23 14:09:36 +000084 '<(icu_gyp_path):icui18n',
85 '<(icu_gyp_path):icuuc',
danno@chromium.org169691d2013-07-15 08:01:13 +000086 ],
87 }],
88 ['OS=="win" and v8_enable_i18n_support==1', {
89 'dependencies': [
machenbach@chromium.org528ce022013-09-23 14:09:36 +000090 '<(icu_gyp_path):icudata',
danno@chromium.orgbee51992013-07-10 14:57:15 +000091 ],
92 }],
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000093 ],
94 },
95 {
96 'target_name': 'd8_js2c',
97 'type': 'none',
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000098 'variables': {
99 'js_files': [
100 'd8.js',
danno@chromium.org160a7b02011-04-18 15:51:38 +0000101 'macros.py',
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000102 ],
103 },
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000104 'conditions': [
105 [ 'want_separate_host_toolset==1', {
106 'toolsets': ['host'],
107 }, {
108 'toolsets': ['target'],
109 }]
110 ],
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000111 'actions': [
112 {
113 'action_name': 'd8_js2c',
114 'inputs': [
115 '../tools/js2c.py',
116 '<@(js_files)',
117 ],
118 'outputs': [
119 '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc',
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000120 ],
121 'action': [
122 'python',
123 '../tools/js2c.py',
124 '<@(_outputs)',
125 'D8',
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000126 'off', # compress startup data
ager@chromium.org5f0c45f2010-12-17 08:51:21 +0000127 '<@(js_files)'
128 ],
129 },
130 ],
131 }
132 ],
133}