| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |