naiveproxy/components/language/core/common/BUILD.gn
2018-08-14 22:19:20 +00:00

31 lines
548 B
Plaintext

# Copyright 2018 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.
static_library("common") {
sources = [
"language_experiments.cc",
"language_experiments.h",
"locale_util.cc",
"locale_util.h",
]
deps = [
"//base",
"//ui/base",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"locale_util_unittest.cc",
]
deps = [
":common",
"//base",
"//testing/gmock",
"//testing/gtest",
]
}