Change log:c92ed25217..bcf2616e8eFull diff:c92ed25217..bcf2616e8eRoll chromium third_party 51c08cf9af..9d65a3cdda Change log:51c08cf9af..9d65a3cddaChanged dependencies: * src/base:a7a2409f9b..b802985ef4* src/build:03f39fd800..fc8308f6b6* src/buildtools:a9e946f166..94288c26d2* src/ios:e070a93062..289c450460* src/testing:f5b31b58c6..a5fce03148* src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/d8600ccc2d..ce9b3742a1 * src/third_party/depot_tools:8de3800ce5..8fe4d8cbef* src/third_party/googletest/src:045e7f9ee4..08d5b1f33a* src/tools:e024720629..6e6e398687* src/tools/swarming_client:88229872dd..833f5ebf89DEPS diff:c92ed25217..bcf2616e8e/DEPS No update to Clang. TBR=buildbot@webrtc.org, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Change-Id: I22bf301fcec0103a1987a92f95ebf86e324dade7 Reviewed-on: https://webrtc-review.googlesource.com/77625 Reviewed-by: WebRTC Buildbot <buildbot@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23296}
91 lines
2.0 KiB
Plaintext
91 lines
2.0 KiB
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.
|
|
|
|
# WARNING: This file is automatically generated.
|
|
|
|
import("//build_overrides/build.gni")
|
|
|
|
if (build_with_chromium) {
|
|
visibility = [
|
|
"//third_party/webrtc/*",
|
|
"//third_party/abseil-cpp/*",
|
|
]
|
|
} else {
|
|
visibility = [ "*" ]
|
|
}
|
|
|
|
source_set("strings") {
|
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
|
configs += [
|
|
"//build/config/compiler:no_chromium_code",
|
|
"//third_party/abseil-cpp:absl_default_cflags_cc",
|
|
]
|
|
public_configs = [ "//third_party/abseil-cpp:absl_include_config" ]
|
|
sources = [
|
|
"ascii.cc",
|
|
"escaping.cc",
|
|
"internal/memutil.cc",
|
|
"internal/memutil.h",
|
|
"internal/stl_type_traits.h",
|
|
"internal/str_join_internal.h",
|
|
"internal/str_split_internal.h",
|
|
"match.cc",
|
|
"numbers.cc",
|
|
"str_cat.cc",
|
|
"str_replace.cc",
|
|
"str_split.cc",
|
|
"string_view.cc",
|
|
"substitute.cc",
|
|
]
|
|
public = [
|
|
"ascii.h",
|
|
"escaping.h",
|
|
"match.h",
|
|
"numbers.h",
|
|
"str_cat.h",
|
|
"str_join.h",
|
|
"str_replace.h",
|
|
"str_split.h",
|
|
"string_view.h",
|
|
"strip.h",
|
|
"substitute.h",
|
|
]
|
|
deps = [
|
|
":internal",
|
|
"../base",
|
|
"../base:config",
|
|
"../base:core_headers",
|
|
"../base:endian",
|
|
"../base:throw_delegate",
|
|
"../memory",
|
|
"../meta:type_traits",
|
|
"../numeric:int128",
|
|
]
|
|
}
|
|
|
|
source_set("internal") {
|
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
|
configs += [
|
|
"//build/config/compiler:no_chromium_code",
|
|
"//third_party/abseil-cpp:absl_default_cflags_cc",
|
|
]
|
|
public_configs = [ "//third_party/abseil-cpp:absl_include_config" ]
|
|
sources = [
|
|
"internal/ostringstream.cc",
|
|
"internal/utf8.cc",
|
|
]
|
|
public = [
|
|
"internal/bits.h",
|
|
"internal/char_map.h",
|
|
"internal/ostringstream.h",
|
|
"internal/resize_uninitialized.h",
|
|
"internal/utf8.h",
|
|
]
|
|
deps = [
|
|
"../base:core_headers",
|
|
"../base:endian",
|
|
"../meta:type_traits",
|
|
]
|
|
}
|