1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
include_rules = [
"-sync/engine",
"-sync/sessions",
"-sync/syncable",
"+sync/internal_api/public",
"+sync/util",
"+sync/test",
"+jingle/notifier/base",
# Should these live in their own "includes" (e.g) directory(ies)?
# Bug 19878.
"+sync/notifier/invalidation_util.h",
"+sync/notifier/mock_sync_notifier_observer.h",
"+sync/notifier/sync_notifier.h",
"+sync/notifier/sync_notifier_helper.h",
"+sync/notifier/sync_notifier_factory.h",
"+sync/notifier/sync_notifier_observer.h",
# TODO(zea): SessionModelAssociator shouldn't need this.
# TODO(sync): Also need to fix crbug.com/123674.
"+sync/syncable",
# TODO(tim): This shouldn't be needed.
"+sync/util/cryptographer.h"
]
|