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

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

Issue 2704002: sync: Store hard coded constants into its header file. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: rebased to ToT Created 10 years, 6 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 | « chrome/browser/sync/tools/sync_listen_notifications.cc ('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 { 5 {
6 'defines': [ 6 'defines': [
7 'FEATURE_ENABLE_SSL', 7 'FEATURE_ENABLE_SSL',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'sync_listen_notifications', 11 'target_name': 'sync_listen_notifications',
12 'type': 'executable', 12 'type': 'executable',
13 'sources': [ 13 'sources': [
14 'sync_constants.cc',
15 'sync_constants.h',
14 'sync_listen_notifications.cc', 16 'sync_listen_notifications.cc',
15 # We are directly including the sync_constants.cc and h files to avoid 17 # We are directly including the sync_constants.cc and h files to avoid
16 # pulling in browser.lib. 18 # pulling in browser.lib.
17 # TODO(akalin): Fix this. 19 # TODO(akalin): Fix this.
18 '<(DEPTH)/chrome/browser/sync/sync_constants.cc', 20 '<(DEPTH)/chrome/browser/sync/sync_constants.cc',
19 '<(DEPTH)/chrome/browser/sync/sync_constants.h', 21 '<(DEPTH)/chrome/browser/sync/sync_constants.h',
20 ], 22 ],
21 'dependencies': [ 23 'dependencies': [
22 '<(DEPTH)/base/base.gyp:base', 24 '<(DEPTH)/base/base.gyp:base',
23 '<(DEPTH)/chrome/chrome.gyp:notifier', 25 '<(DEPTH)/chrome/chrome.gyp:notifier',
24 '<(DEPTH)/third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinval idation', 26 '<(DEPTH)/third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinval idation',
25 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', 27 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle',
26 ], 28 ],
27 }, 29 },
28 ], 30 ],
29 } 31 }
30 32
31 # Local Variables: 33 # Local Variables:
32 # tab-width:2 34 # tab-width:2
33 # indent-tabs-mode:nil 35 # indent-tabs-mode:nil
34 # End: 36 # End:
35 # vim: set expandtab tabstop=2 shiftwidth=2: 37 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/sync/tools/sync_listen_notifications.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698