chromium/components/network_time/time_tracker/BUILD.gn

# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("time_tracker") {
  sources = [
    "time_tracker.cc",
    "time_tracker.h",
  ]

  deps = [ "//base" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "time_tracker_unittest.cc" ]

  deps = [
    ":time_tracker",
    "//base",
    "//base/test:test_support",
    "//testing/gtest",
  ]
}