summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Anderson <thomasanderson@google.com>2017-05-19 15:14:35 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-05-19 22:39:12 +0000
commit41e3c35db0d01098fcf8cb86e22ff6ac846d5a15 (patch)
treeb5486ebbc27d6e358bfb85c0bcfca585ba13094d
parent7ec8eaa59308c39c8256300a488a618a3354a5bd (diff)
downloadpdfium-41e3c35db0d01098fcf8cb86e22ff6ac846d5a15.tar.xz
Update more references to sanitizers:deps
[1] updated sanitizers:deps references to exe_and_shlib_deps. However, this was only for *.gn files. I missed a *.gni file which is changed in this CL. [1] https://pdfium-review.googlesource.com/c/5670/ Bug=chromium:723069 R=thestig@chromium.org Change-Id: Ib5e0c0a31f4227b89d067f9645c2c78945c1ab4f Reviewed-on: https://pdfium-review.googlesource.com/5734 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
-rw-r--r--testing/test.gni11
1 files changed, 2 insertions, 9 deletions
diff --git a/testing/test.gni b/testing/test.gni
index eeda272430..3b9eddc4ee 100644
--- a/testing/test.gni
+++ b/testing/test.gni
@@ -15,7 +15,6 @@ template("test") {
if (is_android) {
import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
- import("//build/config/sanitizers/sanitizers.gni")
_use_raw_android_executable = defined(invoker.use_raw_android_executable) &&
invoker.use_raw_android_executable
@@ -231,11 +230,7 @@ template("test") {
if (!defined(deps)) {
deps = []
}
- deps += [
- # All shared libraries must have the sanitizer deps to properly link in
- # asan mode (this target will be empty in other cases).
- "//build/config/sanitizers:deps",
- ]
+ deps += [ "//build/config:exe_and_shlib_deps" ]
if (!defined(bundle_deps)) {
bundle_deps = []
}
@@ -248,9 +243,7 @@ template("test") {
testonly = true
deps += [
- # All shared libraries must have the sanitizer deps to properly link in
- # asan mode (this target will be empty in other cases).
- "//build/config/sanitizers:deps",
+ "//build/config:exe_and_shlib_deps",
# Give tests the default manifest on Windows (a no-op elsewhere).
"//build/win:default_exe_manifest",