OLD | NEW |
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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 'browser/sync/notifier/chrome_invalidation_client.h', | 1071 'browser/sync/notifier/chrome_invalidation_client.h', |
1072 'browser/sync/notifier/chrome_system_resources.cc', | 1072 'browser/sync/notifier/chrome_system_resources.cc', |
1073 'browser/sync/notifier/chrome_system_resources.h', | 1073 'browser/sync/notifier/chrome_system_resources.h', |
1074 'browser/sync/notifier/invalidation_util.cc', | 1074 'browser/sync/notifier/invalidation_util.cc', |
1075 'browser/sync/notifier/invalidation_util.h', | 1075 'browser/sync/notifier/invalidation_util.h', |
1076 'browser/sync/notifier/registration_manager.cc', | 1076 'browser/sync/notifier/registration_manager.cc', |
1077 'browser/sync/notifier/registration_manager.h', | 1077 'browser/sync/notifier/registration_manager.h', |
1078 'browser/sync/notifier/server_notifier_thread.cc', | 1078 'browser/sync/notifier/server_notifier_thread.cc', |
1079 'browser/sync/notifier/server_notifier_thread.h', | 1079 'browser/sync/notifier/server_notifier_thread.h', |
1080 'browser/sync/notifier/state_writer.h', | 1080 'browser/sync/notifier/state_writer.h', |
| 1081 'browser/sync/notifier/sync_notifier.h', |
| 1082 'browser/sync/notifier/sync_notifier_factory.h', |
| 1083 'browser/sync/notifier/sync_notifier_factory.cc', |
| 1084 'browser/sync/notifier/sync_notifier_impl.h', |
| 1085 'browser/sync/notifier/sync_notifier_impl.cc', |
| 1086 'browser/sync/notifier/sync_notifier_callback.h', |
1081 ], | 1087 ], |
1082 'include_dirs': [ | 1088 'include_dirs': [ |
1083 '..', | 1089 '..', |
1084 ], | 1090 ], |
1085 'dependencies': [ | 1091 'dependencies': [ |
1086 'sync', | 1092 'sync', |
1087 '../jingle/jingle.gyp:notifier', | 1093 '../jingle/jingle.gyp:notifier', |
1088 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 1094 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
1089 ], | 1095 ], |
1090 # This target exports a hard dependency because it depends on | 1096 # This target exports a hard dependency because it depends on |
(...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 }], # targets | 1928 }], # targets |
1923 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1929 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1924 ], # 'conditions' | 1930 ], # 'conditions' |
1925 } | 1931 } |
1926 | 1932 |
1927 # Local Variables: | 1933 # Local Variables: |
1928 # tab-width:2 | 1934 # tab-width:2 |
1929 # indent-tabs-mode:nil | 1935 # indent-tabs-mode:nil |
1930 # End: | 1936 # End: |
1931 # vim: set expandtab tabstop=2 shiftwidth=2: | 1937 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |