1# Copyright 2020 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.
4
5import("//tools/grit/grit_rule.gni")
6
7grit("supervised_user_unscaled_resources") {
8  source = "supervised_user_unscaled_resources.grd"
9  outputs = [
10    "grit/supervised_user_unscaled_resources.h",
11    "supervised_user_unscaled_resources.pak",
12  ]
13  output_dir = "$root_gen_dir/chrome/browser/supervised_user"
14}
15
16static_library("test_support") {
17  testonly = true
18  sources = [
19    "supervised_user_test_util.cc",
20    "supervised_user_test_util.h",
21  ]
22  deps = [
23    "//chrome/browser",
24    "//chrome/common:constants",
25    "//components/prefs",
26  ]
27}
28