Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: tools/gyp/v8.gyp

Issue 146763002: Delete v8_shell target now that chrome uses d8 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698