mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-09 12:12:03 +00:00
30 lines
548 B
Text
30 lines
548 B
Text
# 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",
|
|
]
|
|
}
|