Chromium Code Reviews| Index: test/win/rc-build/hello.gyp |
| diff --git a/test/win/rc-build/hello.gyp b/test/win/rc-build/hello.gyp |
| index 6717a73fc21f085d574ac67a3aed72f4ea16498f..26f36b28f89680e8458d66ed3f7c2d7e5df9084c 100644 |
| --- a/test/win/rc-build/hello.gyp |
| +++ b/test/win/rc-build/hello.gyp |
| @@ -1,27 +1,46 @@ |
| -# 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': 'with_resources', |
| - 'type': 'executable', |
| - 'msvs_settings': { |
| - 'VCCLCompilerTool': { |
| - 'DebugInformationFormat': '3', |
| - }, |
| - 'VCLinkerTool': { |
| - 'GenerateDebugInformation': 'true', |
| - }, |
| - 'VCResourceCompilerTool': { |
| - 'Culture' : '1033', |
| - }, |
| - }, |
| - 'sources': [ |
| - 'hello.cpp', |
| - 'hello.rc', |
| - ], |
| - }, |
| - ], |
| -} |
| +# 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': 'with_resources', |
| + 'type': 'executable', |
| + 'msvs_settings': { |
| + 'VCCLCompilerTool': { |
| + 'DebugInformationFormat': '3', |
| + }, |
| + 'VCLinkerTool': { |
| + 'GenerateDebugInformation': 'true', |
| + }, |
| + 'VCResourceCompilerTool': { |
| + 'Culture' : '1033', |
| + }, |
| + }, |
| + 'sources': [ |
| + 'hello.cpp', |
| + 'hello.rc', |
| + ], |
| + }, |
| + { |
| + 'target_name': 'with_resources_subdir', |
| + 'type': 'executable', |
| + 'msvs_settings': { |
| + 'VCCLCompilerTool': { |
| + 'DebugInformationFormat': '3', |
| + }, |
| + 'VCLinkerTool': { |
| + 'GenerateDebugInformation': 'true', |
| + }, |
| + 'VCResourceCompilerTool': { |
| + 'Culture' : '1033', |
|
Nico
2012/05/31 19:44:36
what does 'Culture' do? sounds hipstery
scottmg
2012/05/31 20:05:41
1033 is great, you probably haven't heard them bef
|
| + }, |
| + }, |
| + 'sources': [ |
| + 'hello.cpp', |
| + 'subdir/hello2.rc', |
| + ], |
| + }, |
| + ], |
| +} |