Chromium Code Reviews| Index: test/win/compiler_flags/runtime_library_md.cc |
| diff --git a/test/win/compiler_flags/runtime_library_md.cc b/test/win/compiler_flags/runtime_library_md.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b23dd5acab093176a4b721155b920aa9950b9865 |
| --- /dev/null |
| +++ b/test/win/compiler_flags/runtime_library_md.cc |
| @@ -0,0 +1,19 @@ |
| +// 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. |
| + |
| +#ifndef _MT |
| +#error |
| +#endif |
| + |
| +#ifndef _DLL |
| +#error |
| +#endif |
| + |
| +#ifdef _DEBUG |
| +#error |
| +#endif |
| + |
| +int main() { |
| + return 0; |
| +} |