OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'invalidation', |
| 9 'type': 'static_library', |
| 10 'dependencies': [ |
| 11 '../base/base.gyp:base', |
| 12 '../sync/sync.gyp:sync', |
| 13 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 14 'keyed_service_core', |
| 15 ], |
| 16 'include_dirs': [ |
| 17 '..', |
| 18 ], |
| 19 'sources': [ |
| 20 'invalidation/invalidation_logger.cc', |
| 21 'invalidation/invalidation_logger.h', |
| 22 'invalidation/invalidation_logger_observer.h', |
| 23 'invalidation/invalidation_service.h', |
| 24 'invalidation/ticl_settings_provider.cc', |
| 25 'invalidation/ticl_settings_provider.h', |
| 26 ], |
| 27 }, |
| 28 ], |
| 29 } |
OLD | NEW |