OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 # The core sync library. | 10 # The core sync library. |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 ], | 210 ], |
211 'export_dependent_settings': [ | 211 'export_dependent_settings': [ |
212 '../jingle/jingle.gyp:notifier', | 212 '../jingle/jingle.gyp:notifier', |
213 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 213 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
214 ], | 214 ], |
215 'sources': [ | 215 'sources': [ |
216 'notifier/sync_notifier.h', | 216 'notifier/sync_notifier.h', |
217 'notifier/sync_notifier_factory.h', | 217 'notifier/sync_notifier_factory.h', |
218 'notifier/sync_notifier_factory.cc', | 218 'notifier/sync_notifier_factory.cc', |
219 'notifier/sync_notifier_observer.h', | 219 'notifier/sync_notifier_observer.h', |
| 220 'notifier/sync_notifier_state.h', |
| 221 'notifier/sync_notifier_state.cc', |
220 ], | 222 ], |
221 'conditions': [ | 223 'conditions': [ |
222 ['OS != "android"', { | 224 ['OS != "android"', { |
223 'sources': [ | 225 'sources': [ |
224 'notifier/chrome_invalidation_client.cc', | 226 'notifier/chrome_invalidation_client.cc', |
225 'notifier/chrome_invalidation_client.h', | 227 'notifier/chrome_invalidation_client.h', |
226 'notifier/chrome_system_resources.cc', | 228 'notifier/chrome_system_resources.cc', |
227 'notifier/chrome_system_resources.h', | 229 'notifier/chrome_system_resources.h', |
228 'notifier/invalidation_notifier.h', | 230 'notifier/invalidation_notifier.h', |
229 'notifier/invalidation_notifier.cc', | 231 'notifier/invalidation_notifier.cc', |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 'test_suite_name': 'sync_unit_tests', | 765 'test_suite_name': 'sync_unit_tests', |
764 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 766 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
765 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, | 767 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, |
766 }, | 768 }, |
767 'includes': [ '../build/apk_test.gypi' ], | 769 'includes': [ '../build/apk_test.gypi' ], |
768 }, | 770 }, |
769 ], | 771 ], |
770 }], | 772 }], |
771 ], | 773 ], |
772 } | 774 } |
OLD | NEW |