| # Copyright 2020 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/features.gni") |
| |
| static_library("invalidations") { |
| sources = [ |
| "fcm_handler.cc", |
| "fcm_handler.h", |
| "fcm_registration_token_observer.h", |
| "interested_data_types_handler.h", |
| "interested_data_types_manager.cc", |
| "interested_data_types_manager.h", |
| "invalidations_listener.h", |
| "sync_invalidations_service.h", |
| "sync_invalidations_service_impl.cc", |
| "sync_invalidations_service_impl.h", |
| ] |
| |
| public_deps = [ |
| "//base", |
| "//components/gcm_driver", |
| "//components/keyed_service/core", |
| "//components/sync/base", |
| ] |
| } |