Revert of Add -ftrapv to debug builds. (patchset #1 id:1 of https://codereview.chromium.org/702893003/)

Reason for revert:
Not clean yet.

Original issue's description:
> Add -ftrapv to debug builds.
>
> This adds instrumentation to check that signed integers never under- or
> overflow, which is undefined behavior.
>
> BUG=skia:3096
>
> Committed: https://skia.googlesource.com/skia/+/ebacb6127a952910f43a59460af43427d93df46c

TBR=bungeman@google.com,mtklein@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:3096

Review URL: https://codereview.chromium.org/751713002
diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi
index 1684151..059806f 100644
--- a/gyp/common_conditions.gypi
+++ b/gyp/common_conditions.gypi
@@ -414,7 +414,6 @@
             'ldflags': ['--coverage'],
           },
           'Debug': {
-            'cflags': ['-ftrapv'],  # Crash on signed integer over/underflow.
           },
           'Release': {
             'cflags': [
@@ -595,7 +594,7 @@
         ],
         'configurations': {
           'Debug': {
-            'cflags': ['-g', '-ftrapv']
+            'cflags': ['-g']
           },
           'Release': {
             'cflags': ['-O2'],