blob: 0c7aa46664aec411330980e4c3d9620abfce1d89 [file] [log] [blame]
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos, "Non-Chrome-OS builds must not depend on //chromeos")
component("version") {
output_name = "chromeos_version"
defines = [ "IS_CHROMEOS_VERSION_IMPL" ]
deps = [
"//base",
"//chromeos/strings",
"//ui/base",
]
sources = [
"version_loader.cc",
"version_loader.h",
]
}
source_set("unit_tests") {
testonly = true
deps = [
"//base",
"//chromeos/version",
"//testing/gtest",
]
sources = [ "version_loader_unittest.cc" ]
}