Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Unified Diff: build/config/BUILD.gn

Issue 2888713003: Add //build/config:exe_and_shlib_deps (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILD.gn
diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
index 60c2bb74084ade5b55819be91e53b94048c1e1fc..aff0e3d9d360a7248158fcf45a65fadcc479d7ac 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -263,6 +263,16 @@ config("default_libs") {
}
}
+# Dependencies that all executables and shared libraries should have.
+# All targets that currently depend on //build/config/sanitizers:deps
+# are being made to depend on this target instead
+# (https://crbug.com/723069).
+group("exe_and_shlib_deps") {
+ public_deps = [
+ "//build/config/sanitizers:deps",
+ ]
+}
+
# Executable configs -----------------------------------------------------------
# Windows linker setup for EXEs and DLLs.
« no previous file with comments | « no previous file | build/config/BUILDCONFIG.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698