mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
|
# Copyright 2015 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
static_library("public") {
|
||
|
sources = [
|
||
|
"ack_handle.cc",
|
||
|
"ack_handle.h",
|
||
|
"ack_handler.cc",
|
||
|
"ack_handler.h",
|
||
|
"active_account_access_token_fetcher_impl.cc",
|
||
|
"active_account_access_token_fetcher_impl.h",
|
||
|
"identity_provider.cc",
|
||
|
"identity_provider.h",
|
||
|
"invalidation.cc",
|
||
|
"invalidation.h",
|
||
|
"invalidation_export.h",
|
||
|
"invalidation_handler.cc",
|
||
|
"invalidation_handler.h",
|
||
|
"invalidation_service.h",
|
||
|
"invalidation_util.cc",
|
||
|
"invalidation_util.h",
|
||
|
"invalidator_state.cc",
|
||
|
"invalidator_state.h",
|
||
|
"object_id_invalidation_map.cc",
|
||
|
"object_id_invalidation_map.h",
|
||
|
"single_object_invalidation_set.cc",
|
||
|
"single_object_invalidation_set.h",
|
||
|
"topic_invalidation_map.cc",
|
||
|
"topic_invalidation_map.h",
|
||
|
]
|
||
|
public_deps = [
|
||
|
"//google_apis",
|
||
|
"//third_party/cacheinvalidation",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"invalidation_util_unittest.cc",
|
||
|
]
|
||
|
deps = [
|
||
|
":public",
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|