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

Side by Side Diff: Makefile

Issue 2868032: Remove source from crash-reporter and crash-dumper as they are no longer necessary. (Closed) Base URL: ssh://git@chromiumos-git//crash.git
Patch Set: Created 10 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | crash_dumper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 CRASH_BIN = crash_reporter
6 CRASH_LIB = libcrash.so
7 CRASH_OBJS = system_logging.o user_collector.o
8 TEST_OBJS = $(CRASH_OBJS) system_logging_mock.o
9 TEST_BINS = user_collector_test
10
11 LIBS = -lbase -lpthread -lgflags -lrt -lmetrics
12
13 TEST_LIBS = $(LIBS) -lgtest -lgmock
14 INCLUDE_DIRS = -I.. -I$(SYSROOT)/usr/include/google-breakpad
15 LIB_DIRS =
16
17 # We need -fPIC for linking objects into shared objects.
18 CXXFLAGS += -fPIC -Wall -Werror
19
20 all:
21 echo "Specify either $(CRASH_BIN) or $(CRASH_LIB)"
22
23 $(CRASH_LIB): crash_dumper.o
24 $(CXX) -shared -lbreakpad_client $^ -o $@
25
26 $(CRASH_BIN): crash_reporter.o $(CRASH_OBJS)
27 $(CXX) $(CXXFLAGS) $(LIB_DIRS) $^ -lcrash $(LIBS) -o $@
28
29 tests: $(TEST_BINS)
30
31 user_collector_test: user_collector_test.o $(TEST_OBJS)
32 $(CXX) $(CXXFLAGS) $(LIB_DIRS) $^ $(TEST_LIBS) -o $@
33
34 .cc.o:
35 $(CXX) $(CXXFLAGS) $(INCLUDE_DIRS) -c $< -o $@
36
37 clean:
38 rm -rf *.o $(CRASH_BIN) $(TEST_BINS) $(CRASH_LIB)
OLDNEW
« no previous file with comments | « no previous file | crash_dumper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698