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

Side by Side Diff: test/win/system-include/test.gyp

Issue 406523005: ninja/win: Put common msvs_system_include_dirs into %INCLUDE% (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: . Created 6 years, 5 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
« pylib/gyp/msvs_emulation.py ('K') | « test/win/system-include/main.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'target_defaults': {
3 'msvs_settings': {
4 'VCCLCompilerTool': {
5 'WarningLevel': '4',
6 'WarnAsError': 'true',
7 },
8 },
9 'msvs_system_include_dirs': [
10 '$(ProjectName)', # Different for each target
11 'common', # Same for all targets
scottmg 2014/07/20 05:20:07 This might need to be absolute? :/
Nico 2014/07/20 05:51:02 Maybe, apparently. Passes for me locally as is :-/
12 ],
13 },
14 'targets': [
15 {
16 'target_name': 'foo',
17 'type': 'executable',
18 'sources': [ 'main.cc', ],
19 },
20 {
21 'target_name': 'bar',
22 'type': 'executable',
23 'sources': [ 'main.cc', ],
24 },
25 ],
26 }
OLDNEW
« pylib/gyp/msvs_emulation.py ('K') | « test/win/system-include/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698