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

Side by Side Diff: Makefile

Issue 6793055: [login_manager] Allow new owner keys to be pushed with StorePolicy (Closed) Base URL: http://git.chromium.org/git/login_manager.git@master
Patch Set: remove some debugging code Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | mock_owner_key.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 CXX ?= g++ 5 CXX ?= g++
6 CXXFLAGS ?= -Wall -Werror -g 6 CXXFLAGS ?= -Wall -Werror -g
7 CXXFLAGS += -DOS_CHROMEOS 7 CXXFLAGS += -DOS_CHROMEOS
8 PKG_CONFIG ?= pkg-config 8 PKG_CONFIG ?= pkg-config
9 9
10 BASE_LIBS = -lpthread -lrt -lchromeos -lbootstat -levent -lprotobuf-lite -lbase 10 BASE_LIBS = -lpthread -lrt -lchromeos -lbootstat -levent -lprotobuf-lite -lbase
11 LIBS = $(BASE_LIBS) 11 LIBS = $(BASE_LIBS)
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 $(DBUS_CLIENT): $(BINDINGS) $(DBUS_SOURCE) 79 $(DBUS_CLIENT): $(BINDINGS) $(DBUS_SOURCE)
80 dbus-binding-tool --mode=glib-client \ 80 dbus-binding-tool --mode=glib-client \
81 --prefix=`basename $(DBUS_SOURCE) .xml` $(DBUS_SOURCE) > $(DBUS_CLIENT) 81 --prefix=`basename $(DBUS_SOURCE) .xml` $(DBUS_SOURCE) > $(DBUS_CLIENT)
82 82
83 $(PROTO_BINDINGS): $(BINDINGS) $(PROTO_DEFS) 83 $(PROTO_BINDINGS): $(BINDINGS) $(PROTO_DEFS)
84 protoc --proto_path=$(PROTO_PATH) --cpp_out=$(BINDINGS) $(PROTO_DEFS) 84 protoc --proto_path=$(PROTO_PATH) --cpp_out=$(BINDINGS) $(PROTO_DEFS)
85 85
86 clean: 86 clean:
87 rm -rf *.o $(KEYGEN_BIN) $(SESSION_BIN) $(TEST_BIN) $(BINDINGS) 87 rm -rf *.o $(KEYGEN_BIN) $(SESSION_BIN) $(TEST_BIN) $(BINDINGS)
OLDNEW
« no previous file with comments | « no previous file | mock_owner_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698