blob: 5b62bd26af40485774b2ca2ceac7e65797c10eab [file] [log] [blame]
# Copyright 2019 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("core") {
sources = [
"games_service.h",
"games_service_impl.cc",
"games_service_impl.h",
"games_types.h",
]
deps = [
"//base",
"//components/games/core/proto",
"//components/keyed_service/core",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"games_service_impl_unittest.cc",
]
deps = [
":core",
"//base",
"//base/test:test_support",
"//components/games/core/proto",
"//testing/gmock",
"//testing/gtest",
]
}