| # 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. |
| |
| import("//testing/test.gni") |
| |
| source_set("lib") { |
| sources = [ |
| "font_data_service_impl.cc", |
| "font_data_service_impl.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//components/services/font_data/public/mojom", |
| "//mojo/public/cpp/bindings", |
| "//mojo/public/cpp/system", |
| "//ui/gfx", |
| ] |
| |
| public_deps = [ "//skia" ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| sources = [ "font_data_service_impl_unittests.cc" ] |
| deps = [ |
| ":lib", |
| "//base", |
| "//base/test:test_support", |
| "//components/services/font_data/public/mojom", |
| "//mojo/public/cpp/bindings", |
| "//mojo/public/cpp/system", |
| "//skia", |
| "//testing/gtest", |
| ] |
| } |