Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / components / ownership / BUILD.gn
blob0432b94bccbcb3161b118b36ef1ad36ec91eafb0
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.
5 component("ownership") {
6   sources = [
7     "mock_owner_key_util.cc",
8     "mock_owner_key_util.h",
9     "owner_key_util.cc",
10     "owner_key_util.h",
11     "owner_key_util_impl.cc",
12     "owner_key_util_impl.h",
13     "owner_settings_service.cc",
14     "owner_settings_service.h",
15   ]
17   defines = [ "OWNERSHIP_IMPLEMENTATION" ]
19   deps = [
20     "//base",
21     "//components/keyed_service/core",
22     "//components/policy",
23     "//components/policy/proto",
24     "//components/policy:policy_component_common",
25     "//crypto",
26   ]
29 source_set("unit_tests") {
30   testonly = true
31   sources = [
32     "owner_key_util_impl_unittest.cc",
33   ]
35   deps = [
36     ":ownership",
37     "//testing/gtest",
38   ]