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

Unified Diff: client/site_tests/logging_UserCrash/src/Makefile

Issue 3450004: Deprecated libcrash.a so stop testing it (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Remove all traces of with-breakpad tests Created 10 years, 3 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 | « client/site_tests/logging_UserCrash/logging_UserCrash.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/site_tests/logging_UserCrash/src/Makefile
diff --git a/client/site_tests/logging_UserCrash/src/Makefile b/client/site_tests/logging_UserCrash/src/Makefile
index 4d65e831e7e5da236386eafff63bd00b4ca5ffee..838f34c1abde1cc6874dfd046f56c56bff49ee5a 100644
--- a/client/site_tests/logging_UserCrash/src/Makefile
+++ b/client/site_tests/logging_UserCrash/src/Makefile
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-BINS = crasher_breakpad crasher_nobreakpad
+BINS = crasher_nobreakpad
SRC = crasher.cc
OBJS = crasher.o bomb.o
TGZ = crasher.tgz
@@ -13,11 +13,8 @@ all: $(TGZ)
$(TGZ): $(BINS)
tar czf $(TGZ) $^
-crasher_breakpad: $(OBJS)
- $(CXX) -o $@ $^ -lcrash
-
crasher_nobreakpad: $(OBJS)
- $(CXX) -o $@ $^
+ $(CXX) $(CXXFLAGS) -o $@ $^
.cc.o:
$(CXX) $(CXXFLAGS) -c $< -o $@
« no previous file with comments | « client/site_tests/logging_UserCrash/logging_UserCrash.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698