Chromium Code Reviews| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 344 ], | 344 ], |
| 345 }, | 345 }, |
| 346 'VCLinkerTool': { | 346 'VCLinkerTool': { |
| 347 'LinkIncremental': '2', | 347 'LinkIncremental': '2', |
| 348 }, | 348 }, |
| 349 }, | 349 }, |
| 350 'conditions': [ | 350 'conditions': [ |
| 351 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { | 351 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { |
| 352 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', | 352 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', |
| 353 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], | 353 '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], |
| 354 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | |
|
caseq1
2012/10/15 17:55:19
This broke debugging of chrome, at least with gdb
Michael Starzinger
2012/10/16 08:19:13
I'll fix that and make sure that the GDBJIT suppor
| |
| 354 }], | 355 }], |
| 355 ['OS=="android"', { | 356 ['OS=="android"', { |
| 356 'variables': { | 357 'variables': { |
| 357 'android_full_debug%': 1, | 358 'android_full_debug%': 1, |
| 358 }, | 359 }, |
| 359 'conditions': [ | 360 'conditions': [ |
| 360 ['android_full_debug==0', { | 361 ['android_full_debug==0', { |
| 361 # Disable full debug if we want a faster v8 in a debug build. | 362 # Disable full debug if we want a faster v8 in a debug build. |
| 362 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG. | 363 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG. |
| 363 'defines!': [ | 364 'defines!': [ |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 426 'OptimizeReferences': '2', | 427 'OptimizeReferences': '2', |
| 427 'EnableCOMDATFolding': '2', | 428 'EnableCOMDATFolding': '2', |
| 428 }, | 429 }, |
| 429 }, | 430 }, |
| 430 }], # OS=="win" | 431 }], # OS=="win" |
| 431 ], # conditions | 432 ], # conditions |
| 432 }, # Release | 433 }, # Release |
| 433 }, # configurations | 434 }, # configurations |
| 434 }, # target_defaults | 435 }, # target_defaults |
| 435 } | 436 } |
| OLD | NEW |