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

Side by Side Diff: build/common.gypi

Issue 11195043: Disable GDBJIT support by default in Debug mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 ], 350 ],
351 }, 351 },
352 'VCLinkerTool': { 352 'VCLinkerTool': {
353 'LinkIncremental': '2', 353 'LinkIncremental': '2',
354 }, 354 },
355 }, 355 },
356 'conditions': [ 356 'conditions': [
357 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 357 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', {
358 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', 358 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter',
359 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], 359 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ],
360 'defines': ['ENABLE_GDB_JIT_INTERFACE',],
361 }], 360 }],
362 ['OS=="android"', { 361 ['OS=="android"', {
363 'variables': { 362 'variables': {
364 'android_full_debug%': 1, 363 'android_full_debug%': 1,
365 }, 364 },
366 'conditions': [ 365 'conditions': [
367 ['android_full_debug==0', { 366 ['android_full_debug==0', {
368 # Disable full debug if we want a faster v8 in a debug build. 367 # Disable full debug if we want a faster v8 in a debug build.
369 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG. 368 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG.
370 'defines!': [ 369 'defines!': [
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 'OptimizeReferences': '2', 432 'OptimizeReferences': '2',
434 'EnableCOMDATFolding': '2', 433 'EnableCOMDATFolding': '2',
435 }, 434 },
436 }, 435 },
437 }], # OS=="win" 436 }], # OS=="win"
438 ], # conditions 437 ], # conditions
439 }, # Release 438 }, # Release
440 }, # configurations 439 }, # configurations
441 }, # target_defaults 440 }, # target_defaults
442 } 441 }
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