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

Unified Diff: base/allocator/BUILD.gn

Issue 1584893002: Allow base to depend on allocator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: base/allocator/BUILD.gn
diff --git a/base/allocator/BUILD.gn b/base/allocator/BUILD.gn
index 9d09a357af6efcaf2d73a551ee46cc1c54409b01..a57206a5d043ca2e674d4bebd68d399dcd4e52dd 100644
--- a/base/allocator/BUILD.gn
+++ b/base/allocator/BUILD.gn
@@ -16,19 +16,19 @@ declare_args() {
enable_debugallocation = is_debug
}
-# Only executables and not libraries should depend on the allocator target;
-# only the application (the final executable) knows what allocator makes sense.
# This "allocator" meta-target will forward to the default allocator according
# to the build settings.
group("allocator") {
- public_deps = []
+ deps = []
+
if (use_allocator == "tcmalloc") {
- public_deps += [ ":tcmalloc" ]
+ deps += [ ":tcmalloc" ]
}
# This condition expresses the win_use_allocator_shim in the GYP build.
if (is_win && !is_component_build && visual_studio_version != "2015") {
- public_deps += [ ":allocator_shim" ]
+ deps += [ ":allocator_shim" ]
+ all_dependent_configs = [ ":nocmt" ]
}
}
@@ -107,10 +107,8 @@ if (is_win) {
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
- public_configs = [ ":nocmt" ]
deps = [
":prep_libc",
- "//base",
]
}
}
« base/BUILD.gn ('K') | « base/BUILD.gn ('k') | base/allocator/allocator.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698