1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This file contains the definition of the template absl_source_set which
# should be the only type of target needed in abseil's BUILD.gn files.
# This template will correctly set "configs" and "public_configs" in order
# to correctly compile abseil in Chromium.
#
# Usage:
# Most of the times its usage will be similar to the example below but all
# the arguments avilable in source_set are also available for absl_source_set.
#
# absl_source_set("foo") {
# sources = [ "foo.cc" ]
# public = [ "foo.h" ]
# deps = [ ":bar" ]
# }
import("//build_overrides/build.gni")
declare_args() {
absl_build_tests = build_with_chromium
moz_webrtc_build = true
}
template("absl_source_set") {
source_set(target_name) {
if (defined(invoker.testonly) && invoker.testonly && !absl_build_tests) {
not_needed(invoker, "*")
} else {
forward_variables_from(invoker, "*")
configs -= [ "//chromium/build/config/compiler:chromium_code" ]
configs += [
"//chromium/build/config/compiler:no_chromium_code",
"//chromium/build/config/compiler:prevent_unsafe_narrowing",
"//abseil-cpp:absl_default_cflags_cc",
"//abseil-cpp:absl_define_config",
]
if (moz_webrtc_build) {
configs -= [ "//chromium/build/config/compiler:prevent_unsafe_narrowing" ]
}
if (!defined(defines)) {
defines = []
}
if (is_component_build) {
defines += [ "ABSL_BUILD_DLL" ]
if (!is_win && current_os != "aix") {
configs -= [ "//chromium/build/config/gcc:symbol_visibility_hidden" ]
configs += [ "//chromium/build/config/gcc:symbol_visibility_default" ]
}
}
if (!defined(public_configs)) {
public_configs = []
}
public_configs += [ "//abseil-cpp:absl_include_config" ]
if (!defined(visibility)) {
# Within Chromium builds, restrict direct visibility of Abseil sources, so
# users must depend on //third_party/abseil-cpp:absl. This prevents use of
# banned targets like absl/types:any. A few targets require exceptions.
if (build_with_chromium) {
visibility = [
# Abseil itself.
"//third_party/abseil-cpp/*",
# GTest. It unconditionally #includes any.h if pretty-print support
# for absl types is enabled.
"//third_party/googletest/*",
]
if (!is_component_build) {
visibility += [
# Not used by Chromium directly.
"//chromecast/internal/*",
"//libassistant/*",
]
}
} else {
visibility = [ "*" ]
}
}
visibility += [ "//abseil-cpp/*" ]
# Now that abseil-cpp lives under Mozilla's third_party instead
# of under libwebrtc's third_party and is built as a stand-alone
# library, we need to "re-root" the dependency paths. We can
# modify the dependencies here to avoid modifying most, if not
# all, of the BUILD.gn files.
if (defined(deps)) {
modified_deps = []
foreach (dep, deps) {
newdep = string_replace(dep, "//third_party/abseil-cpp/", "//")
newdep = string_replace(newdep, "//build", "//chromium/build")
modified_deps += [ newdep ]
}
deps = []
deps = modified_deps
}
# Same for public_deps
if (defined(public_deps)) {
modified_deps = []
foreach (dep, public_deps) {
newdep = string_replace(dep, "//third_party/abseil-cpp/", "//")
modified_deps += [ newdep ]
}
public_deps = []
public_deps = modified_deps
}
# Same for visibility
if (defined(visibility)) {
modified_deps = []
foreach (dep, visibility) {
newdep = string_replace(dep, "//third_party/abseil-cpp/", "//")
modified_deps += [ newdep ]
}
visibility = []
visibility = modified_deps
}
}
}
}
template("absl_test") {
source_set(target_name) {
if (!absl_build_tests) {
not_needed(invoker, "*")
} else {
forward_variables_from(invoker, "*")
testonly = true
configs -= [ "//chromium/build/config/compiler:chromium_code" ]
configs += [
"//chromium/build/config/compiler:no_chromium_code",
"//abseil-cpp:absl_default_cflags_cc",
"//abseil-cpp:absl_define_config",
"//abseil-cpp:absl_test_config",
]
if (!defined(public_configs)) {
public_configs = []
}
public_configs += [ "//abseil-cpp:absl_include_config" ]
visibility = [ "//third_party/abseil-cpp/:*" ]
deps += [
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}
# Now that abseil-cpp lives under Mozilla's third_party instead
# of under libwebrtc's third_party and is built as a stand-alone
# library, we need to "re-root" the dependency paths. We can
# modify the dependencies here to avoid modifying most, if not
# all, of the BUILD.gn files.
if (defined(deps)) {
modified_deps = []
foreach (dep, deps) {
newdep = string_replace(dep, "//third_party/abseil-cpp/", "//")
modified_deps += [ newdep ]
}
deps = []
deps = modified_deps
}
}
}
|