blob: 14316cfcb0503fb85e8bcea31a2ed69b245e7196 [file] [log] [blame]
# Copyright 2014 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.
# CryptAuth is a component which manages data about devices associated with a
# user's account. This component both sends data about the current device and
# requets data about associated devices.
static_library("cryptauth") {
sources = [
"cryptauth_access_token_fetcher.h",
"cryptauth_access_token_fetcher_impl.cc",
"cryptauth_access_token_fetcher_impl.h",
"cryptauth_api_call_flow.cc",
"cryptauth_api_call_flow.h",
"cryptauth_client.h",
"cryptauth_client_impl.cc",
"cryptauth_client_impl.h",
"cryptauth_device_manager.cc",
"cryptauth_device_manager.h",
"cryptauth_enroller.h",
"cryptauth_enroller_impl.cc",
"cryptauth_enroller_impl.h",
"cryptauth_enrollment_manager.cc",
"cryptauth_enrollment_manager.h",
"cryptauth_enrollment_utils.cc",
"cryptauth_enrollment_utils.h",
"cryptauth_gcm_manager.cc",
"cryptauth_gcm_manager.h",
"cryptauth_gcm_manager_impl.cc",
"cryptauth_gcm_manager_impl.h",
"pref_names.cc",
"pref_names.h",
"remote_device.cc",
"remote_device.h",
"secure_message_delegate.cc",
"secure_message_delegate.h",
"switches.cc",
"switches.h",
"sync_scheduler.cc",
"sync_scheduler.h",
"sync_scheduler_impl.cc",
"sync_scheduler_impl.h",
]
deps = [
"//base",
"//components/gcm_driver",
"//components/gcm_driver/common",
"//components/prefs",
"//components/proximity_auth/logging",
"//crypto",
"//google_apis",
"//net",
]
public_deps = [
"//components/cryptauth/proto",
]
}
static_library("test_support") {
testonly = true
sources = [
"fake_cryptauth_gcm_manager.cc",
"fake_cryptauth_gcm_manager.h",
"fake_secure_message_delegate.cc",
"fake_secure_message_delegate.h",
"mock_cryptauth_client.cc",
"mock_cryptauth_client.h",
"mock_sync_scheduler.cc",
"mock_sync_scheduler.h",
]
public_deps = [
":cryptauth",
"//components/cryptauth/proto",
]
deps = [
"//base",
"//testing/gmock",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"cryptauth_access_token_fetcher_impl_unittest.cc",
"cryptauth_api_call_flow_unittest.cc",
"cryptauth_client_impl_unittest.cc",
"cryptauth_device_manager_unittest.cc",
"cryptauth_enroller_impl_unittest.cc",
"cryptauth_enrollment_manager_unittest.cc",
"cryptauth_gcm_manager_impl_unittest.cc",
"fake_secure_message_delegate_unittest.cc",
"sync_scheduler_impl_unittest.cc",
]
deps = [
":cryptauth",
":test_support",
"//base/test:test_support",
"//components/gcm_driver:test_support",
"//components/prefs:test_support",
"//components/proximity_auth",
"//google_apis:test_support",
"//net:test_support",
"//testing/gtest",
]
}