blob: ff89f968534df53f566350119349c244a2547b81 [file] [log] [blame]
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_chromeos)
component("file_manager") {
output_name = "file_manager"
defines = [ "IS_FILE_MANAGER_IMPL" ]
deps = [ "//base" ]
sources = [
"speedometer.cc",
"speedometer.h",
]
}
static_library("constants") {
sources = [ "app_id.h" ]
}
source_set("unit_tests") {
testonly = true
deps = [
":file_manager",
"//base",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
sources = [ "speedometer_unittest.cc" ]
}