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

Unified Diff: build/config/BUILDCONFIG.gn

Issue 1914313002: Re-land "Flip remaining non-lkgr linux memory bots to GN." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 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/sanitizers/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index 86fceae3a3b4f7ce5fcbc8551387a359919faf82..629e3ec4f279aa3da80377e830232feef8b9037b 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -511,13 +511,16 @@ if (is_win) {
}
# Executable defaults.
-_executable_configs = _native_compiler_configs + [
- "//build/config:default_libs",
- "//build/config:executable_config",
- ]
+_executable_configs =
+ _native_compiler_configs + [
+ "//build/config:default_libs",
+ "//build/config:executable_config",
+ "//third_party/instrumented_libraries:prebuilt_link_helper",
+ ]
if (is_win) {
_executable_configs += _windows_linker_configs
}
+
set_defaults("executable") {
configs = _executable_configs
}
@@ -529,10 +532,12 @@ set_defaults("static_library") {
# Shared library and loadable module defaults (also for components in component
# mode).
-_shared_library_configs = _native_compiler_configs + [
- "//build/config:default_libs",
- "//build/config:shared_library_config",
- ]
+_shared_library_configs =
+ _native_compiler_configs + [
+ "//build/config:default_libs",
+ "//build/config:shared_library_config",
+ "//third_party/instrumented_libraries:prebuilt_link_helper",
+ ]
if (is_win) {
_shared_library_configs += _windows_linker_configs
} else if (is_android) {
« no previous file with comments | « no previous file | build/config/sanitizers/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698