summaryrefslogtreecommitdiff
path: root/tools/gyp/test/cxxflags/cxxflags.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/cxxflags/cxxflags.cc')
-rw-r--r--tools/gyp/test/cxxflags/cxxflags.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/gyp/test/cxxflags/cxxflags.cc b/tools/gyp/test/cxxflags/cxxflags.cc
deleted file mode 100644
index e70e39dfd3..0000000000
--- a/tools/gyp/test/cxxflags/cxxflags.cc
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Copyright (c) 2010 Google Inc. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file. */
-
-#include <stdio.h>
-
-int main(void)
-{
-#ifdef ABC
- printf("With define\n");
-#else
- printf("No define\n");
-#endif
- return 0;
-}