summaryrefslogtreecommitdiff
path: root/chromium/components/services/language_detection/BUILD.gn
blob: 9c8cf9bbd3dd9155b6e0c62232bbf61064b711a2 (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
# 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",
  ]
}