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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 'browser/sync/notifier/chrome_invalidation_client.h', | 943 'browser/sync/notifier/chrome_invalidation_client.h', |
944 'browser/sync/notifier/chrome_system_resources.cc', | 944 'browser/sync/notifier/chrome_system_resources.cc', |
945 'browser/sync/notifier/chrome_system_resources.h', | 945 'browser/sync/notifier/chrome_system_resources.h', |
946 'browser/sync/notifier/invalidation_util.cc', | 946 'browser/sync/notifier/invalidation_util.cc', |
947 'browser/sync/notifier/invalidation_util.h', | 947 'browser/sync/notifier/invalidation_util.h', |
948 'browser/sync/notifier/registration_manager.cc', | 948 'browser/sync/notifier/registration_manager.cc', |
949 'browser/sync/notifier/registration_manager.h', | 949 'browser/sync/notifier/registration_manager.h', |
950 'browser/sync/notifier/server_notifier_thread.cc', | 950 'browser/sync/notifier/server_notifier_thread.cc', |
951 'browser/sync/notifier/server_notifier_thread.h', | 951 'browser/sync/notifier/server_notifier_thread.h', |
952 'browser/sync/notifier/state_writer.h', | 952 'browser/sync/notifier/state_writer.h', |
| 953 'browser/sync/notifier/sync_notifier.h', |
| 954 'browser/sync/notifier/sync_notifier_factory.h', |
| 955 'browser/sync/notifier/sync_notifier_factory.cc', |
| 956 'browser/sync/notifier/sync_notifier_impl.h', |
| 957 'browser/sync/notifier/sync_notifier_impl.cc', |
| 958 'browser/sync/notifier/sync_notifier_callback.h', |
953 ], | 959 ], |
954 'include_dirs': [ | 960 'include_dirs': [ |
955 '..', | 961 '..', |
956 ], | 962 ], |
957 'dependencies': [ | 963 'dependencies': [ |
958 'sync', | 964 'sync', |
959 '../jingle/jingle.gyp:notifier', | 965 '../jingle/jingle.gyp:notifier', |
960 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 966 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
961 ], | 967 ], |
962 # This target exports a hard dependency because it depends on | 968 # This target exports a hard dependency because it depends on |
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1795 }], # targets | 1801 }], # targets |
1796 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1802 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1797 ], # 'conditions' | 1803 ], # 'conditions' |
1798 } | 1804 } |
1799 | 1805 |
1800 # Local Variables: | 1806 # Local Variables: |
1801 # tab-width:2 | 1807 # tab-width:2 |
1802 # indent-tabs-mode:nil | 1808 # indent-tabs-mode:nil |
1803 # End: | 1809 # End: |
1804 # vim: set expandtab tabstop=2 shiftwidth=2: | 1810 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |