blob: 1a761b79fe3e2977132c96e0c933335633c193a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2020 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("//build/config/features.gni")
source_set("language_detection") {
sources = [
"language_detection_service_impl.cc",
"language_detection_service_impl.h",
]
deps = [
"//base",
"//components/translate/core/language_detection",
"//mojo/public/cpp/bindings",
]
public_deps = [
"//components/services/language_detection/public/mojom",
"//mojo/public/mojom/base",
]
}
|