OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1117 }, { | 1117 }, { |
1118 'toolsets': ['target'], | 1118 'toolsets': ['target'], |
1119 }], | 1119 }], |
1120 ['v8_compress_startup_data=="bz2"', { | 1120 ['v8_compress_startup_data=="bz2"', { |
1121 'libraries': [ | 1121 'libraries': [ |
1122 '-lbz2', | 1122 '-lbz2', |
1123 ] | 1123 ] |
1124 }], | 1124 }], |
1125 ], | 1125 ], |
1126 }, | 1126 }, |
1127 { | |
1128 'target_name': 'v8_shell', | |
1129 'type': 'executable', | |
1130 'dependencies': [ | |
1131 'v8' | |
1132 ], | |
1133 'sources': [ | |
1134 '../../samples/shell.cc', | |
1135 ], | |
1136 'conditions': [ | |
1137 ['want_separate_host_toolset==1', { | |
1138 'toolsets': ['host'], | |
1139 }, { | |
1140 'toolsets': ['target'], | |
1141 }], | |
1142 ['OS=="win"', { | |
1143 # This could be gotten by not setting chromium_code, if that's OK. | |
1144 'defines': ['_CRT_SECURE_NO_WARNINGS'], | |
1145 }], | |
1146 ['v8_compress_startup_data=="bz2"', { | |
1147 'libraries': [ | |
1148 '-lbz2', | |
1149 ] | |
1150 }], | |
1151 ], | |
1152 }, | |
1153 ], | 1127 ], |
1154 } | 1128 } |
OLD | NEW |