mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
47 lines
804 B
Plaintext
47 lines
804 B
Plaintext
|
# Copyright (c) 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.
|
||
|
|
||
|
source_set("strings") {
|
||
|
sources = [
|
||
|
"string16_embedded_nulls.cc",
|
||
|
"string16_embedded_nulls.h",
|
||
|
"string_util.cc",
|
||
|
"string_util.h",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base:base",
|
||
|
"//base:i18n",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("string_test_helpers") {
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"string_test_helpers.cc",
|
||
|
"string_test_helpers.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":strings",
|
||
|
"//base:base",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unittest_sources") {
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"string16_embedded_nulls_unittest.cc",
|
||
|
"string_util_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":string_test_helpers",
|
||
|
":strings",
|
||
|
"//base",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|