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

Unified Diff: base/test/BUILD.gn

Issue 1064793002: Fix OutOfMemoryDeathTest.ViaSharedLibraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed CL to avoid target enumeration on unsupported OS Created 5 years, 8 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 | « base/process/memory_unittest.cc ('k') | base/test/malloc_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/BUILD.gn
diff --git a/base/test/BUILD.gn b/base/test/BUILD.gn
index c4356cbbacd3e7a233ad788d6ffc089744440931..6872aff9e10b8beabfe0fe72e3f04e28f805b91a 100644
--- a/base/test/BUILD.gn
+++ b/base/test/BUILD.gn
@@ -183,6 +183,18 @@ source_set("run_all_unittests") {
]
}
+if (is_linux) {
+ shared_library("malloc_wrapper") {
+ testonly = true
+ sources = [
+ "malloc_wrapper.cc",
+ ]
+ deps = [
+ "//base",
+ ]
+ }
+}
+
if (is_android) {
generate_jni("base_unittests_jni_headers") {
sources = [
« no previous file with comments | « base/process/memory_unittest.cc ('k') | base/test/malloc_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698