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

Unified Diff: src/Makefile.am

Issue 5180003: cashew: add local byte counters (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cashew.git@master
Patch Set: Address jglasgow and zelidrag (offline) code review comments Created 10 years, 1 month 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 | src/byte_counter.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 0ee2af577f24ef00fce391bae900f311868f9a7d..5443d3fff625acf45bb7f919713250abedd55e62 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,6 +13,8 @@
noinst_LTLIBRARIES = libcashew.la
libcashew_la_SOURCES = \
+ byte_counter.h \
+ byte_counter.cc \
cashew_server.h \
cashew_server.cc \
data_plan.h \
@@ -30,6 +32,8 @@ libcashew_la_SOURCES = \
libcurl_http_fetcher.cc \
policy.h \
policy.cc \
+ procfs_byte_counter.h \
+ procfs_byte_counter.cc \
service.h \
service.cc \
service_manager.h \
@@ -87,7 +91,7 @@ COMMON_LIBS = \
@GLIB_LIBS@ \
@GLOG_LIBS@
-libcashew_la_CPPFLAGS = \
+libcashew_la_CXXFLAGS = \
$(COMMON_CFLAGS)
libcashew_la_LIBADD = \
@@ -104,7 +108,7 @@ sbin_PROGRAMS = cashewd
cashewd_SOURCES = \
main.cc
-cashewd_CPPFLAGS = \
+cashewd_CXXFLAGS = \
$(COMMON_CFLAGS)
cashewd_LDADD = \
@@ -122,12 +126,13 @@ cashew_unittest_SOURCES = \
data_plan_unittest.cc \
default_policy_unittest.cc \
json_reader_unittest.cc \
+ procfs_byte_counter_unittest.cc \
values_unittest.cc
GTEST_CFLAGS =
GTEST_LIBS = -lgtest
-cashew_unittest_CPPFLAGS = \
+cashew_unittest_CXXFLAGS = \
$(COMMON_CFLAGS) \
$(GTEST_CFLAGS)
« no previous file with comments | « no previous file | src/byte_counter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698