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

Side by Side Diff: sync/sync.gyp

Issue 10139004: [Sync] Move 'sync_listen_notifications' target to sync/tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sync/tools/sync_tools.gyp ('k') | sync/tools/DEPS » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 # The core sync library. 10 # The core sync library.
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 # leak_annotations.h, which pulls this in. Make 'base' 462 # leak_annotations.h, which pulls this in. Make 'base'
463 # propagate this dependency. 463 # propagate this dependency.
464 'conditions': [ 464 'conditions': [
465 ['OS=="linux" and linux_use_tcmalloc==1', { 465 ['OS=="linux" and linux_use_tcmalloc==1', {
466 'dependencies': [ 466 'dependencies': [
467 '../base/allocator/allocator.gyp:allocator', 467 '../base/allocator/allocator.gyp:allocator',
468 ], 468 ],
469 }], 469 }],
470 ], 470 ],
471 }, 471 },
472
473 # A tool to listen to sync notifications and print them out.
474 {
475 'target_name': 'sync_listen_notifications',
476 'type': 'executable',
477 'dependencies': [
478 '../base/base.gyp:base',
479 '../jingle/jingle.gyp:notifier',
480 '../net/net.gyp:net',
481 '../net/net.gyp:net_test_support',
482 'sync',
483 'sync_notifier',
484 ],
485 'sources': [
486 'tools/sync_listen_notifications.cc',
487 ],
488 },
472 ], 489 ],
473 } 490 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/tools/sync_tools.gyp ('k') | sync/tools/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698