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

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

Issue 110573005: Build fix after (mis-)merging bleeding_edge. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 { 296 {
297 'target_name': 'v8_base.<(v8_target_arch)', 297 'target_name': 'v8_base.<(v8_target_arch)',
298 'type': 'static_library', 298 'type': 'static_library',
299 'conditions': [ 299 'conditions': [
300 ['want_separate_host_toolset==1', { 300 ['want_separate_host_toolset==1', {
301 'toolsets': ['host', 'target'], 301 'toolsets': ['host', 'target'],
302 'dependencies': ['generated-lexer#host'], 302 'dependencies': ['generated-lexer#host'],
303 }, { 303 }, {
304 'toolsets': ['target'], 304 'toolsets': ['target'],
305 'dependencies': ['generated-lexer'], 305 'dependencies': ['generated-lexer'],
306 }], 306 }]
307 ],
307 'variables': { 308 'variables': {
308 'optimize': 'max', 309 'optimize': 'max',
309 }, 310 },
310 'include_dirs+': [ 311 'include_dirs+': [
311 '../../src', 312 '../../src',
312 '../../include', 313 '../../include',
313 ], 314 ],
314 'sources': [ ### gcmole(all) ### 315 'sources': [ ### gcmole(all) ###
315 '../../src/accessors.cc', 316 '../../src/accessors.cc',
316 '../../src/accessors.h', 317 '../../src/accessors.h',
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 }], 1179 }],
1179 ['v8_compress_startup_data=="bz2"', { 1180 ['v8_compress_startup_data=="bz2"', {
1180 'libraries': [ 1181 'libraries': [
1181 '-lbz2', 1182 '-lbz2',
1182 ] 1183 ]
1183 }], 1184 }],
1184 ], 1185 ],
1185 }, 1186 },
1186 ], 1187 ],
1187 } 1188 }
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