Do not define _DEBUG.

The vc++ compiler would define some internal contants if we define
_DEBUG, since we are linking to the release build of chromiumcontent,
this would result in linking errors.
This commit is contained in:
Cheng Zhao 2014-02-25 18:24:07 +08:00
parent 30b3657c0e
commit a5ec8a9110

View file

@ -232,7 +232,7 @@
], ],
'configurations': { 'configurations': {
'Debug': { 'Debug': {
'defines': [ 'DEBUG', '_DEBUG' ], 'defines': [ 'DEBUG' ],
'cflags': [ '-g', '-O0' ], 'cflags': [ '-g', '-O0' ],
}, },
}, },