Reviewers: Jakob,

Description:
Never define 'DEBUG' for non-v8 code

[email protected]

Please review this at https://codereview.chromium.org/20831003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M build/standalone.gypi


Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index ab2dfd528e4862abbfde11c98c9384be7c5950cb..5c017d5f5073986935c3502642588c68d435b629 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -120,6 +120,9 @@
     },
     'target_conditions': [
       ['v8_code == 0', {
+        'defines!': [
+          'DEBUG',
+        ],
         'conditions': [
           ['os_posix == 1 and OS != "mac"', {
             'cflags!': [
@@ -132,9 +135,6 @@
             },
           }],
           ['OS == "win"', {
-            'defines!': [
-              'DEBUG',
-            ],
             'msvs_settings': {
               'VCCLCompilerTool': {
                 'WarnAsError': 'false',


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to