diff options
-rw-r--r-- | build/all.gyp | 1 | ||||
-rw-r--r-- | chrome/browser/sync/tools/sync_tools.gyp | 12 |
2 files changed, 12 insertions, 1 deletions
diff --git a/build/all.gyp b/build/all.gyp index de43a7c..018c3d5 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -11,6 +11,7 @@ 'dependencies': [ '../app/app.gyp:*', '../base/base.gyp:*', + '../chrome/browser/sync/tools/sync_tools.gyp:*', '../chrome/chrome.gyp:*', '../gfx/gfx.gyp:*', '../gpu/gpu.gyp:*', diff --git a/chrome/browser/sync/tools/sync_tools.gyp b/chrome/browser/sync/tools/sync_tools.gyp index 8befeab..53fcc9f 100644 --- a/chrome/browser/sync/tools/sync_tools.gyp +++ b/chrome/browser/sync/tools/sync_tools.gyp @@ -2,7 +2,6 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -# TODO(akalin): Reference this file from all.gyp so it's always built. { 'defines': [ 'FEATURE_ENABLE_SSL', @@ -25,6 +24,17 @@ '<(DEPTH)/third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation', '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', ], + # TODO(akalin): Figure out the right place to put this. + 'conditions': [ + ['OS=="win"', { + 'link_settings': { + 'libraries': [ + '-lsecur32.lib', + '-lcrypt32.lib', + ], + }, + },], + ], }, ], } |