Index: test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp |
diff --git a/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp b/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c854be79072775d7ea85f6d6b5b32455c9769810 |
--- /dev/null |
+++ b/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp |
@@ -0,0 +1,24 @@ |
+# Copyright (c) 2013 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. |
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'c++98', |
+ 'type': 'executable', |
+ 'sources': [ 'c++98.cc', ], |
+ 'xcode_settings': { |
+ 'CLANG_CXX_LANGUAGE_STANDARD': 'c++98', |
+ }, |
+ }, |
+ { |
+ 'target_name': 'c++11', |
+ 'type': 'executable', |
+ 'sources': [ 'c++11.cc', ], |
+ 'xcode_settings': { |
+ 'CLANG_CXX_LANGUAGE_STANDARD': 'c++0x', |
+ }, |
+ }, |
+ ], |
+} |
+ |