Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: test/win/rc-build/hello.gyp

Issue 10448103: ninja windows: include gyp dir in rc build include dirs (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'with_resources', 8 'target_name': 'with_resources',
9 'type': 'executable', 9 'type': 'executable',
10 'msvs_settings': { 10 'msvs_settings': {
11 'VCCLCompilerTool': { 11 'VCCLCompilerTool': {
12 'DebugInformationFormat': '3', 12 'DebugInformationFormat': '3',
13 }, 13 },
14 'VCLinkerTool': { 14 'VCLinkerTool': {
15 'GenerateDebugInformation': 'true', 15 'GenerateDebugInformation': 'true',
16 }, 16 },
17 'VCResourceCompilerTool': { 17 'VCResourceCompilerTool': {
18 'Culture' : '1033', 18 'Culture' : '1033',
19 }, 19 },
20 }, 20 },
21 'sources': [ 21 'sources': [
22 'hello.cpp', 22 'hello.cpp',
23 'hello.rc', 23 'hello.rc',
24 ], 24 ],
25 }, 25 },
26 {
27 'target_name': 'with_resources_subdir',
28 'type': 'executable',
29 'msvs_settings': {
30 'VCCLCompilerTool': {
31 'DebugInformationFormat': '3',
32 },
33 'VCLinkerTool': {
34 'GenerateDebugInformation': 'true',
35 },
36 'VCResourceCompilerTool': {
37 '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
38 },
39 },
40 'sources': [
41 'hello.cpp',
42 'subdir/hello2.rc',
43 ],
44 },
26 ], 45 ],
27 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698