blob: 72a887301bded5ef5d0814e4756e9789a9e5f851 [file] [log] [blame]
# Copyright 2014 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")
static_library("renderer") {
sources = [
"translate_helper.cc",
"translate_helper.h",
]
deps = [
"//base",
"//components/translate/content/common",
"//components/translate/core/common",
"//components/translate/core/language_detection",
"//services/service_manager/public/cpp",
"//third_party/blink/public:blink",
"//url",
"//v8",
]
public_deps = [
"//content/public/common",
"//content/public/renderer",
"//third_party/blink/public:blink_headers",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"translate_helper_unittest.cc",
]
deps = [
":renderer",
"//base",
"//testing/gtest",
]
}