Use installed DBus libraries instead of generating them.
login_manager, power_manager, debugd and shill now expose a client
library with the generated dbus-proxies.h file and the system_api's
installed dbus-constants.h. This patch changes update_engine from
generating these DBus headers to use the installed client libraries.
The client libraries already include the service path string, so we
don't need to include system_api dbus-constants.h in most cases, unless
we actually use some parameter constants defined there.
BUG=b:23084776,b:23560718
TEST=./build_packages --board=link
Change-Id: Idb4501e784ebb5928c92902d114462be57d5826a
diff --git a/connection_manager_unittest.cc b/connection_manager_unittest.cc
index b799e65..ba4ad9a 100644
--- a/connection_manager_unittest.cc
+++ b/connection_manager_unittest.cc
@@ -21,15 +21,15 @@
#include <base/logging.h>
#include <chromeos/any.h>
-#include <chromeos/dbus/service_constants.h>
#include <chromeos/make_unique_ptr.h>
#include <chromeos/message_loops/fake_message_loop.h>
#include <chromeos/variant_dictionary.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
+#include <shill/dbus-constants.h>
+#include <shill/dbus-proxies.h>
+#include <shill/dbus-proxy-mocks.h>
-#include "shill/dbus-proxies.h"
-#include "shill/dbus-proxy-mocks.h"
#include "update_engine/fake_shill_proxy.h"
#include "update_engine/fake_system_state.h"
#include "update_engine/test_utils.h"