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

Unified Diff: pylib/gyp/msvs_emulation.py

Issue 10389225: ninja windows: support and test for AdditionalIncludeDirectories (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: move to AdjustIncludeDirs Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/win/compiler-flags/additional-include-dirs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/msvs_emulation.py
diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
index 967c6d98eda79469e40f030b75c5414cd76322ff..c100169745269aba950ba6ce97ced5ea7ba60f32 100644
--- a/pylib/gyp/msvs_emulation.py
+++ b/pylib/gyp/msvs_emulation.py
@@ -219,6 +219,8 @@ class MsvsSettings(object):
"""Updates include_dirs to expand VS specific paths, and adds the system
include dirs used for platform SDK and similar."""
includes = include_dirs + self.msvs_system_include_dirs[config]
+ includes.extend(self._Setting(
+ ('VCCLCompilerTool', 'AdditionalIncludeDirectories'), config, default=[]))
return [self.ConvertVSMacros(p) for p in includes]
def GetComputedDefines(self, config):
« no previous file with comments | « no previous file | test/win/compiler-flags/additional-include-dirs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698