BUILD.gn 484 B

1234567891011121314151617181920212223
  1. # Copyright 2021 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. import("//build/config/chromeos/ui_mode.gni")
  5. assert(is_chromeos_ash)
  6. component("metrics") {
  7. defines = [ "IS_CHROMEOS_METRICS_IMPL" ]
  8. sources = [
  9. "login_event_recorder.cc",
  10. "login_event_recorder.h",
  11. ]
  12. output_name = "chromeos_metrics"
  13. deps = [
  14. "//base",
  15. "//build:chromeos_buildflags",
  16. ]
  17. }