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

Unified Diff: Makefile

Issue 6815021: [login_manager] Code to add the owner to the whitelist in a device policy (Closed) Base URL: http://git.chromium.org/git/login_manager.git@master
Patch Set: address gauravsh comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | device_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 4498f2722b6c030d1ab6794fffb3fff9d9ca89b5..96aa5ef1b5e5935330095eb09980923acf821e17 100644
--- a/Makefile
+++ b/Makefile
@@ -22,10 +22,13 @@ DBUS_SERVER = $(BINDINGS)/server.h
DBUS_CLIENT = $(BINDINGS)/client.h
PROTO_PATH = $(ROOT)/usr/include/proto
-PROTO_DEFS = $(PROTO_PATH)/device_management_backend.proto
-PROTO_BINDINGS = $(BINDINGS)/device_management_backend.pb.cc
+PROTO_DEFS = $(PROTO_PATH)/chrome_device_policy.proto \
+ $(PROTO_PATH)/device_management_backend.proto
+PROTO_BINDINGS = $(BINDINGS)/chrome_device_policy.pb.cc \
+ $(BINDINGS)/device_management_backend.pb.cc
PROTO_HEADERS = $(patsubst %.cc,%.h,$(PROTO_BINDINGS))
-PROTO_OBJS = $(BINDINGS)/device_management_backend.pb.o
+PROTO_OBJS = $(BINDINGS)/chrome_device_policy.pb.o \
+ $(BINDINGS)/device_management_backend.pb.o
COMMON_OBJS = child_job.o interface.o nss_util.o owner_key.o \
owner_key_loss_mitigator.o pref_store.o system_utils.o \
« no previous file with comments | « no previous file | device_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698