Index: Makefile |
diff --git a/Makefile b/Makefile |
index 0523c199e367823f753de0a5794f6a93b79ceca2..c8039f45bca727c5cf6e1f7f1e1b069c7e259110 100644 |
--- a/Makefile |
+++ b/Makefile |
@@ -7,10 +7,9 @@ REPORTER_BINS = $(CRASH_REPORTER) |
CRASH_OBJS = \ |
crash_collector.o \ |
kernel_collector.o \ |
- system_logging.o \ |
unclean_shutdown_collector.o \ |
user_collector.o |
-TEST_OBJS = $(CRASH_OBJS) system_logging_mock.o |
+TEST_OBJS = $(CRASH_OBJS) |
TEST_BINS = \ |
crash_collector_test \ |
kernel_collector_test \ |
@@ -20,7 +19,7 @@ TEST_BINS = \ |
LDCONFIG = $(shell $(PKG_CONFIG) --libs libpcrecpp) |
# -lglib-2.0 is needed by libbase.a now. |
-COMMON_LIBS = -lbase -lpthread -lglib-2.0 -lgflags -lrt $(LDCONFIG) |
+COMMON_LIBS = -lbase -lchromeos -lpthread -lglib-2.0 -lgflags -lrt $(LDCONFIG) |
petkov
2011/02/25 19:28:34
Do you need to add a dependency to libchromeos to
|
REPORTER_LIBS = $(COMMON_LIBS) -lmetrics |
TEST_LIBS = $(COMMON_LIBS) -lgtest -lgmock |