summaryrefslogtreecommitdiff
path: root/testing/test.gni
diff options
context:
space:
mode:
authorTom Anderson <thomasanderson@chromium.org>2018-05-30 18:18:11 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-05-30 18:18:11 +0000
commit625255b6f8a6f6ee4b7b1eab8202b47c46659fb7 (patch)
tree37d9f0906fe8db4a1b9035cee8512612193745fb /testing/test.gni
parentd06cc38b76685b002c51b227ae43b8314d926ad8 (diff)
downloadpdfium-625255b6f8a6f6ee4b7b1eab8202b47c46659fb7.tar.xz
Remove manual references to exe_and_shlib_deps
After [1], a manual dependency on exe_and_shlib_deps is no longer necessary since it's automatically added. This CL removes all remaining manual references to exe_and_shlib_deps. [1] https://chromium.googlesource.com/chromium/src.git/+/d7ed1f0a9c28c932fddc834ca5de44f28266c7f5 BUG=chromium:845700 R=thestig Change-Id: I5708e7c662b24493d1216f9a802dfce3de5dbea6 Reviewed-on: https://pdfium-review.googlesource.com/33151 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'testing/test.gni')
-rw-r--r--testing/test.gni6
1 files changed, 0 insertions, 6 deletions
diff --git a/testing/test.gni b/testing/test.gni
index 3b9eddc4ee..b69a0706ec 100644
--- a/testing/test.gni
+++ b/testing/test.gni
@@ -227,10 +227,6 @@ template("test") {
}
extra_substitutions += [ "GTEST_BUNDLE_ID_SUFFIX=$_bundle_id_suffix" ]
- if (!defined(deps)) {
- deps = []
- }
- deps += [ "//build/config:exe_and_shlib_deps" ]
if (!defined(bundle_deps)) {
bundle_deps = []
}
@@ -243,8 +239,6 @@ template("test") {
testonly = true
deps += [
- "//build/config:exe_and_shlib_deps",
-
# Give tests the default manifest on Windows (a no-op elsewhere).
"//build/win:default_exe_manifest",
]