diff options
-rw-r--r-- | DEPS | 2 | ||||
-rw-r--r-- | google_update/google_update.gyp | 8 | ||||
-rw-r--r-- | third_party/tcmalloc/tcmalloc.gyp | 8 |
3 files changed, 15 insertions, 3 deletions
@@ -29,7 +29,7 @@ deps = { # TODO(mark): Remove once this has moved into depot_tools. "src/tools/gyp": - "http://gyp.googlecode.com/svn/trunk@540", + "http://gyp.googlecode.com/svn/trunk@544", "src/v8": "http://v8.googlecode.com/svn/trunk@2412", diff --git a/google_update/google_update.gyp b/google_update/google_update.gyp index 40f95e5..c5e41e6 100644 --- a/google_update/google_update.gyp +++ b/google_update/google_update.gyp @@ -9,7 +9,6 @@ 'targets': [ { 'target_name': 'google_update', - 'type': 'none', 'msvs_guid': '4052059A-D72B-4183-B5C2-9D1B099E9E35', 'sources': [ 'google_update_idl.idl', @@ -22,6 +21,13 @@ '<(INTERMEDIATE_DIR)/../google_update', ], }, + 'conditions': [ + ['OS=="win"', { + 'type': 'utility', + },{ + 'type': 'none', + }], + ], }, ], } diff --git a/third_party/tcmalloc/tcmalloc.gyp b/third_party/tcmalloc/tcmalloc.gyp index 43fc60d..ddef91f 100644 --- a/third_party/tcmalloc/tcmalloc.gyp +++ b/third_party/tcmalloc/tcmalloc.gyp @@ -75,7 +75,13 @@ }, { 'target_name': 'libcmt', - 'type': 'none', + 'conditions': [ + ['OS=="win"', { + 'type': 'utility', + },{ + 'type': 'none', + }], + ], 'actions': [ { 'action_name': 'libcmt', |