Make |context| passed to queryRequiredElement optional
[chromium-blink-merge.git] / components / login / BUILD.gn
blob26a28685f6cff5f9a182a6dcd60b8791f873618c
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("login") {
6   sources = [
7     "base_screen_handler_utils.cc",
8     "base_screen_handler_utils.h",
9     "localized_values_builder.cc",
10     "localized_values_builder.h",
11     "screens/screen_context.cc",
12     "screens/screen_context.h",
13   ]
15   defines = [ "LOGIN_IMPLEMENTATION" ]
17   deps = [
18     "//ui/base",
19   ]
21   public_deps = [
22     "//base",
23   ]
26 source_set("unit_tests") {
27   testonly = true
28   sources = [
29     "screens/screen_context_unittest.cc",
30   ]
32   deps = [
33     ":login",
34     "//base",
35     "//testing/gtest",
36   ]