blob: 357e129fb29b208832785a6da3be67fc8e1c89c2 [file] [log] [blame]
# 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("//build/config/features.gni")
static_library("renderer") {
sources = [
"language_detection_model_manager.cc",
"language_detection_model_manager.h",
]
deps = [
"//base",
"//components/language_detection/content/common",
"//components/language_detection/core",
"//third_party/blink/public:blink_headers",
]
}
static_library("agent") {
sources = [
"language_detection_agent.cc",
"language_detection_agent.h",
]
deps = [
":renderer",
"//base",
"//components/language_detection/content/common",
"//components/language_detection/core",
"//content/public/renderer",
]
public_deps = [ "//third_party/blink/public:blink_headers" ]
}