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 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 'browser/sync/notifier/chrome_invalidation_client.h', | 1063 'browser/sync/notifier/chrome_invalidation_client.h', |
1064 'browser/sync/notifier/chrome_system_resources.cc', | 1064 'browser/sync/notifier/chrome_system_resources.cc', |
1065 'browser/sync/notifier/chrome_system_resources.h', | 1065 'browser/sync/notifier/chrome_system_resources.h', |
1066 'browser/sync/notifier/invalidation_util.cc', | 1066 'browser/sync/notifier/invalidation_util.cc', |
1067 'browser/sync/notifier/invalidation_util.h', | 1067 'browser/sync/notifier/invalidation_util.h', |
1068 'browser/sync/notifier/registration_manager.cc', | 1068 'browser/sync/notifier/registration_manager.cc', |
1069 'browser/sync/notifier/registration_manager.h', | 1069 'browser/sync/notifier/registration_manager.h', |
1070 'browser/sync/notifier/server_notifier_thread.cc', | 1070 'browser/sync/notifier/server_notifier_thread.cc', |
1071 'browser/sync/notifier/server_notifier_thread.h', | 1071 'browser/sync/notifier/server_notifier_thread.h', |
1072 'browser/sync/notifier/state_writer.h', | 1072 'browser/sync/notifier/state_writer.h', |
| 1073 'browser/sync/notifier/sync_notifier.h', |
| 1074 'browser/sync/notifier/sync_notifier_factory.h', |
| 1075 'browser/sync/notifier/sync_notifier_factory.cc', |
| 1076 'browser/sync/notifier/sync_notifier_impl.h', |
| 1077 'browser/sync/notifier/sync_notifier_impl.cc', |
| 1078 'browser/sync/notifier/sync_notifier_callback.h', |
1073 ], | 1079 ], |
1074 'include_dirs': [ | 1080 'include_dirs': [ |
1075 '..', | 1081 '..', |
1076 ], | 1082 ], |
1077 'dependencies': [ | 1083 'dependencies': [ |
1078 'sync', | 1084 'sync', |
1079 '../jingle/jingle.gyp:notifier', | 1085 '../jingle/jingle.gyp:notifier', |
1080 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 1086 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
1081 ], | 1087 ], |
1082 # This target exports a hard dependency because it depends on | 1088 # This target exports a hard dependency because it depends on |
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1916 }], # targets | 1922 }], # targets |
1917 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1923 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1918 ], # 'conditions' | 1924 ], # 'conditions' |
1919 } | 1925 } |
1920 | 1926 |
1921 # Local Variables: | 1927 # Local Variables: |
1922 # tab-width:2 | 1928 # tab-width:2 |
1923 # indent-tabs-mode:nil | 1929 # indent-tabs-mode:nil |
1924 # End: | 1930 # End: |
1925 # vim: set expandtab tabstop=2 shiftwidth=2: | 1931 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |