blob: b339d1f6c1dc694cf03db22150f0805dc0e3f7d1 [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.
component("common") {
defines = [ "IS_MIRACLE_PARAMETER_IMPL" ]
sources = [
"public/miracle_parameter.cc",
"public/miracle_parameter.h",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [ "public/miracle_parameter_unittest.cc" ]
deps = [
":common",
"//base",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}