blob: a8ab99b3ac95458725194011bd17ac7c517f30c0 [file] [log] [blame]
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//testing/test.gni")
if (!is_ios) {
static_library("common") {
sources = [
"file_stream.cc",
"file_stream.h",
"glyph_usage.cc",
"glyph_usage.h",
"serial_utils.cc",
"serial_utils.h",
"subset_font.cc",
"subset_font.h",
]
deps = [
"//base",
"//skia",
"//third_party:freetype_harfbuzz",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"file_stream_unittest.cc",
"glyph_usage_unittest.cc",
"serial_utils_unittest.cc",
"subset_font_unittest.cc",
]
deps = [
":common",
"//base",
"//base/test:test_support",
"//skia",
"//testing/gmock",
"//testing/gtest",
"//third_party:freetype_harfbuzz",
]
}
test("paint_preview_common_unit_tests") {
deps = [
":unit_tests",
"//base",
"//base/test:test_support",
"//components/test:run_all_unittests",
]
}
}