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

Side by Side Diff: test/cctest/cctest.gyp

Issue 236833004: Revert "Rename target-specific binaries built for host." (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 }], 199 }],
200 ['component=="shared_library"', { 200 ['component=="shared_library"', {
201 # cctest can't be built against a shared library, so we need to 201 # cctest can't be built against a shared library, so we need to
202 # depend on the underlying static target in that case. 202 # depend on the underlying static target in that case.
203 'conditions': [ 203 'conditions': [
204 ['v8_use_snapshot=="true"', { 204 ['v8_use_snapshot=="true"', {
205 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], 205 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'],
206 }, 206 },
207 { 207 {
208 'dependencies': [ 208 'dependencies': [
209 '../../tools/gyp/v8.gyp:v8_nosnapshot.<(v8_target_arch)', 209 '../../tools/gyp/v8.gyp:v8_nosnapshot',
210 ], 210 ],
211 }], 211 }],
212 ], 212 ],
213 }, { 213 }, {
214 'dependencies': ['../../tools/gyp/v8.gyp:v8'], 214 'dependencies': ['../../tools/gyp/v8.gyp:v8'],
215 }], 215 }],
216 ], 216 ],
217 }, 217 },
218 { 218 {
219 'target_name': 'resources', 219 'target_name': 'resources',
(...skipping 26 matching lines...) Expand all
246 '<@(_outputs)', 246 '<@(_outputs)',
247 'TEST', # type 247 'TEST', # type
248 'off', # compression 248 'off', # compression
249 '<@(file_list)', 249 '<@(file_list)',
250 ], 250 ],
251 } 251 }
252 ], 252 ],
253 }, 253 },
254 ], 254 ],
255 } 255 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698