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

Side by Side Diff: chrome/browser/sync/tools/sync_tools.gyp

Issue 1735018: Added sync_tools.gyp to all.gyp. (Closed)
Patch Set: Fixed windows compile Created 10 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 unified diff | Download patch
« no previous file with comments | « build/all.gyp ('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
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # TODO(akalin): Reference this file from all.gyp so it's always built.
6 { 5 {
7 'defines': [ 6 'defines': [
8 'FEATURE_ENABLE_SSL', 7 'FEATURE_ENABLE_SSL',
9 ], 8 ],
10 'targets': [ 9 'targets': [
11 { 10 {
12 'target_name': 'sync_listen_notifications', 11 'target_name': 'sync_listen_notifications',
13 'type': 'executable', 12 'type': 'executable',
14 'sources': [ 13 'sources': [
15 'sync_listen_notifications.cc', 14 'sync_listen_notifications.cc',
16 ], 15 ],
17 'dependencies': [ 16 'dependencies': [
18 '<(DEPTH)/base/base.gyp:base', 17 '<(DEPTH)/base/base.gyp:base',
19 '<(DEPTH)/chrome/chrome.gyp:notifier', 18 '<(DEPTH)/chrome/chrome.gyp:notifier',
20 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', 19 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle',
21 ], 20 ],
21 # TODO(akalin): Figure out the right place to put this.
22 'conditions': [
23 ['OS=="win"', {
24 'link_settings': {
25 'libraries': [
26 '-lsecur32.lib',
27 '-lcrypt32.lib',
28 ],
29 },
30 },],
31 ],
22 }, 32 },
23 ], 33 ],
24 } 34 }
25 35
26 # Local Variables: 36 # Local Variables:
27 # tab-width:2 37 # tab-width:2
28 # indent-tabs-mode:nil 38 # indent-tabs-mode:nil
29 # End: 39 # End:
30 # vim: set expandtab tabstop=2 shiftwidth=2: 40 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698