BUILD.gn 553 B

1234567891011121314151617181920212223
  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.
  4. component("login") {
  5. sources = [
  6. "base_screen_handler_utils.cc",
  7. "base_screen_handler_utils.h",
  8. "localized_values_builder.cc",
  9. "localized_values_builder.h",
  10. "secure_module_util_chromeos.cc",
  11. "secure_module_util_chromeos.h",
  12. ]
  13. defines = [ "LOGIN_IMPLEMENTATION" ]
  14. deps = [
  15. "//components/account_id",
  16. "//ui/base",
  17. ]
  18. public_deps = [ "//base" ]
  19. }