1 # Copyright 2012 the V8 project authors. All rights reserved. 2 # 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': { 30 'v8_code': 1, 31 'console%': '', 32 # Enable support for Intel VTune. Supported on ia32/x64 only 33 'v8_enable_vtunejit%': 0, 34 'v8_enable_i18n_support%': 1, 35 }, 36 'includes': ['../build/toolchain.gypi', '../build/features.gypi'], 37 'targets': [ 38 { 39 'target_name': 'd8', 40 'type': 'executable', 41 'dependencies': [ 42 '../tools/gyp/v8.gyp:v8', 43 ], 44 # Generated source files need this explicitly: 45 'include_dirs+': [ 46 '../src', 47 ], 48 'sources': [ 49 'd8.cc', 50 ], 51 'conditions': [ 52 [ 'console=="readline"', { 53 'libraries': [ '-lreadline', ], 54 'sources': [ 'd8-readline.cc' ], 55 }], 56 [ 'component!="shared_library"', { 57 'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ], 58 'conditions': [ 59 [ 'want_separate_host_toolset==1', { 60 'dependencies': [ 61 'd8_js2c#host', 62 ], 63 }, { 64 'dependencies': [ 65 'd8_js2c', 66 ], 67 }], 68 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \ 69 or OS=="openbsd" or OS=="solaris" or OS=="android")', { 70 'sources': [ 'd8-posix.cc', ] 71 }], 72 [ 'OS=="win"', { 73 'sources': [ 'd8-windows.cc', ] 74 }], 75 ], 76 }], 77 ['v8_enable_vtunejit==1', { 78 'dependencies': [ 79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', 80 ], 81 }], 82 ['v8_enable_i18n_support==1', { 83 'dependencies': [ 84 '<(icu_gyp_path):icui18n', 85 '<(icu_gyp_path):icuuc', 86 ], 87 }], 88 ['OS=="win" and v8_enable_i18n_support==1', { 89 'dependencies': [ 90 '<(icu_gyp_path):icudata', 91 ], 92 }], 93 ], 94 }, 95 { 96 'target_name': 'd8_js2c', 97 'type': 'none', 98 'variables': { 99 'js_files': [ 100 'd8.js', 101 'macros.py', 102 ], 103 }, 104 'conditions': [ 105 [ 'want_separate_host_toolset==1', { 106 'toolsets': ['host'], 107 }, { 108 'toolsets': ['target'], 109 }] 110 ], 111 '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', 120 ], 121 'action': [ 122 'python', 123 '../tools/js2c.py', 124 '<@(_outputs)', 125 'D8', 126 'off', # compress startup data 127 '<@(js_files)' 128 ], 129 }, 130 ], 131 } 132 ], 133 } 134