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

Unified Diff: tools/win/static_initializers/static_initializers.gyp

Issue 239603002: Only build win static_initializers tool on Pro where DIA is available (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: msvs_express Created 6 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/win/static_initializers/static_initializers.gyp
diff --git a/tools/win/static_initializers/static_initializers.gyp b/tools/win/static_initializers/static_initializers.gyp
index ebf4e835aa118d121fac0e225243b4cd31dd8142..724091f23a87108408809a736d9200f33f5dc67a 100644
--- a/tools/win/static_initializers/static_initializers.gyp
+++ b/tools/win/static_initializers/static_initializers.gyp
@@ -6,17 +6,23 @@
'variables': {
'chromium_code': 1,
},
- 'targets': [
- {
- 'target_name': 'static_initializers',
- 'type': 'executable',
- 'sources': [
- 'static_initializers.cc',
+ 'conditions': [
+ ['not msvs_express', {
+ 'targets': [
+ {
+ 'target_name': 'static_initializers',
+ 'type': 'executable',
+ 'sources': [
+ 'static_initializers.cc',
+ ],
+ 'include_dirs': [
+ '$(VSInstallDir)/DIA SDK/include',
+ ],
+ },
],
- 'include_dirs': [
- '$(VSInstallDir)/DIA SDK/include',
- ],
- },
- ],
+ }, {
+ 'targets': [],
+ }],
+ ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698