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

Unified Diff: src/Makefile.am

Issue 3528016: Cashew: implement backend usage API (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cashew.git
Patch Set: Fix code review nits and remove hardcoded usage URLs Created 10 years, 2 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 | « configure.ac ('k') | src/cashew_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/Makefile.am
diff --git a/src/Makefile.am b/src/Makefile.am
index 26dd1364affdbc503cc14a739f23da3bc9c890f5..20f453b58030b23161ce8b8c8d20962de14fa2a2 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -9,8 +9,17 @@ cashewd_SOURCES = \
cashew_server.cc \
data_plan.h \
data_plan.cc \
+ data_plan_provider.h \
+ data_plan_provider.cc \
+ default_policy.h \
+ default_policy.cc \
device.h \
device.cc \
+ http_fetcher.h \
+ libcurl_http_fetcher.h \
+ libcurl_http_fetcher.cc \
+ policy.h \
+ policy.cc \
service.h \
service.cc \
service_manager.h \
@@ -38,7 +47,8 @@ BUILT_SOURCES = \
CLEANFILES = $(BUILT_SOURCES)
-# manually defining info for libs with no pkg-config file
+# CFLAGS and LIBS info comes from PKG_CHECK_MODULES checks in configure.ac
+# We manually define info below for libs with no pkg-config file
LIBBASE_CFLAGS =
LIBBASE_LIBS = -lbase
@@ -48,12 +58,16 @@ GFLAGS_LIBS = -lgflags
cashewd_CPPFLAGS = -Wall -Werror \
$(LIBBASE_CFLAGS) \
+ @CURL_CFLAGS@ \
@DBUS_CPP_CFLAGS@ \
$(GFLAGS_CFLAGS) \
+ @GLIB_CFLAGS@ \
@GLOG_CFLAGS@
cashewd_LDADD = \
$(LIBBASE_LIBS) \
+ @CURL_LIBS@ \
@DBUS_CPP_LIBS@ \
$(GFLAGS_LIBS) \
+ @GLIB_LIBS@ \
@GLOG_LIBS@
« no previous file with comments | « configure.ac ('k') | src/cashew_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698