mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
38 lines
820 B
Plaintext
38 lines
820 B
Plaintext
# 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",
|
|
"//content/public/common",
|
|
"//content/public/renderer",
|
|
"//services/service_manager/public/cpp",
|
|
"//third_party/blink/public:blink",
|
|
"//url",
|
|
"//v8",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"translate_helper_unittest.cc",
|
|
]
|
|
deps = [
|
|
":renderer",
|
|
"//base",
|
|
"//testing/gtest",
|
|
]
|
|
}
|