| Index: test/win/compiler_flags/runtime-checks.gyp
|
| diff --git a/test/win/compiler_flags/runtime-checks.gyp b/test/win/compiler_flags/runtime-checks.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..64d2f71afd7a38daf368d2e61826f2070660bb48
|
| --- /dev/null
|
| +++ b/test/win/compiler_flags/runtime-checks.gyp
|
| @@ -0,0 +1,59 @@
|
| +# Copyright (c) 2012 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': 'test_brc_none',
|
| + 'product_name': 'test_brc_none',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_brc_s',
|
| + 'product_name': 'test_brc_s',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'BasicRuntimeChecks': '1'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_brc_u',
|
| + 'product_name': 'test_brc_u',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'BasicRuntimeChecks': '2'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_brc_1',
|
| + 'product_name': 'test_brc_1',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'BasicRuntimeChecks': '3'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + ]
|
| +}
|
|
|