| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 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 #================================================================ | 5 #================================================================ |
| 6 # libcashew | 6 # libcashew |
| 7 # | 7 # |
| 8 # libcashew contains the bulk of the cashew source code | 8 # libcashew contains the bulk of the cashew source code |
| 9 # we link it with main.cc to produce cashewd, and we link it with | 9 # we link it with main.cc to produce cashewd, and we link it with |
| 10 # our *_unittest.cc sources to produce our unit test executable | 10 # our *_unittest.cc sources to produce our unit test executable |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 device.cc \ | 27 device.cc \ |
| 28 http_fetcher.h \ | 28 http_fetcher.h \ |
| 29 json_reader.h \ | 29 json_reader.h \ |
| 30 json_reader.cc \ | 30 json_reader.cc \ |
| 31 libcurl_http_fetcher.h \ | 31 libcurl_http_fetcher.h \ |
| 32 libcurl_http_fetcher.cc \ | 32 libcurl_http_fetcher.cc \ |
| 33 policy.h \ | 33 policy.h \ |
| 34 policy.cc \ | 34 policy.cc \ |
| 35 procfs_byte_counter.h \ | 35 procfs_byte_counter.h \ |
| 36 procfs_byte_counter.cc \ | 36 procfs_byte_counter.cc \ |
| 37 property_changed_handler.h \ |
| 38 property_changed_handler.cc \ |
| 37 service.h \ | 39 service.h \ |
| 38 service.cc \ | 40 service.cc \ |
| 39 service_manager.h \ | 41 service_manager.h \ |
| 40 service_manager.cc \ | 42 service_manager.cc \ |
| 41 values.h \ | 43 values.h \ |
| 42 values.cc | 44 values.cc |
| 43 | 45 |
| 44 # D-Bus server stub generation | 46 # D-Bus server stub generation |
| 45 DBUSXX_XML2CPP = dbusxx-xml2cpp | 47 DBUSXX_XML2CPP = dbusxx-xml2cpp |
| 46 cashew_server_glue.h: $(top_srcdir)/introspection/cashew.xml | 48 cashew_server_glue.h: $(top_srcdir)/introspection/cashew.xml |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 GTEST_LIBS = -lgtest | 135 GTEST_LIBS = -lgtest |
| 134 | 136 |
| 135 cashew_unittest_CXXFLAGS = \ | 137 cashew_unittest_CXXFLAGS = \ |
| 136 $(COMMON_CFLAGS) \ | 138 $(COMMON_CFLAGS) \ |
| 137 $(GTEST_CFLAGS) | 139 $(GTEST_CFLAGS) |
| 138 | 140 |
| 139 cashew_unittest_LDADD = \ | 141 cashew_unittest_LDADD = \ |
| 140 $(LIBCASHEW) \ | 142 $(LIBCASHEW) \ |
| 141 $(COMMON_LIBS) \ | 143 $(COMMON_LIBS) \ |
| 142 $(GTEST_LIBS) | 144 $(GTEST_LIBS) |
| OLD | NEW |