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

Side by Side Diff: sync/sync_notifier.gypi

Issue 11412211: [sync] Componentize sync: Part Final: Target 'sync' is now its own component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + merge with net->sync dependency fix (no code changes) Created 7 years, 11 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
OLDNEW
(Empty)
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'include_dirs': [
7 '..',
8 ],
9 'defines': [
10 'SYNC_IMPLEMENTATION',
11 ],
12 'dependencies': [
13 '../base/base.gyp:base',
14 '../jingle/jingle.gyp:jingle_glue',
15 '../jingle/jingle.gyp:notifier',
16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
17 # TODO(akalin): Remove this (http://crbug.com/133352).
18 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_pr oto_cpp',
19 ],
20 'export_dependent_settings': [
21 '../jingle/jingle.gyp:notifier',
22 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
23 ],
24 'sources': [
25 'notifier/invalidation_handler.h',
26 'notifier/invalidation_state_tracker.cc',
27 'notifier/invalidation_state_tracker.h',
28 'notifier/invalidation_util.cc',
29 'notifier/invalidation_util.h',
30 'notifier/invalidator_factory.cc',
31 'notifier/invalidator_factory.h',
32 'notifier/invalidator.h',
33 'notifier/invalidator_registrar.cc',
34 'notifier/invalidator_registrar.h',
35 'notifier/invalidator_state.cc',
36 'notifier/invalidator_state.h',
37 'notifier/object_id_invalidation_map.cc',
38 'notifier/object_id_invalidation_map.h',
39 ],
40 'conditions': [
41 ['OS == "ios"', {
42 'sources!': [
43 'notifier/invalidator_factory.cc',
44 ],
45 }],
46 ['OS != "android" and OS != "ios"', {
47 'sources': [
48 'notifier/ack_tracker.cc',
49 'notifier/ack_tracker.h',
50 'notifier/invalidation_notifier.cc',
51 'notifier/invalidation_notifier.h',
52 'notifier/non_blocking_invalidator.cc',
53 'notifier/non_blocking_invalidator.h',
54 'notifier/p2p_invalidator.cc',
55 'notifier/p2p_invalidator.h',
56 'notifier/push_client_channel.cc',
57 'notifier/push_client_channel.h',
58 'notifier/registration_manager.cc',
59 'notifier/registration_manager.h',
60 'notifier/state_writer.h',
61 'notifier/sync_invalidation_listener.cc',
62 'notifier/sync_invalidation_listener.h',
63 'notifier/sync_system_resources.cc',
64 'notifier/sync_system_resources.h',
65 ],
66 }],
67 ['OS != "ios"', {
68 'dependencies': [
69 '../third_party/libjingle/libjingle.gyp:libjingle',
70 ],
71 }],
72 ],
73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698