summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authornick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-10 07:19:12 +0000
committernick@chromium.org <nick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-10 07:19:12 +0000
commit85f07ece0d4e006389f238c804e77b0496c02c30 (patch)
tree53dd5c4bc316ef52a4bb30a6efe941b987a44c3a /chrome/browser
parent5852edc1b6eab234b9e048c41dd0d664ae7fc747 (diff)
downloadchromium_src-85f07ece0d4e006389f238c804e77b0496c02c30.zip
chromium_src-85f07ece0d4e006389f238c804e77b0496c02c30.tar.gz
chromium_src-85f07ece0d4e006389f238c804e77b0496c02c30.tar.bz2
Fix checkdeps by removing some include paths
and adding a DEPS rule to allow "talk/". This code is not yet compiled, but it is still subject to checkdeps. TEST=ran checkdeps.py BUG=none Review URL: http://codereview.chromium.org/201077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25851 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/sync/notifier/DEPS9
-rw-r--r--chrome/browser/sync/notifier/base/string_unittest.cc1
-rw-r--r--chrome/browser/sync/notifier/base/time_unittest.cc1
-rw-r--r--chrome/browser/sync/notifier/communicator/mailbox_unittest.cc1
4 files changed, 9 insertions, 3 deletions
diff --git a/chrome/browser/sync/notifier/DEPS b/chrome/browser/sync/notifier/DEPS
new file mode 100644
index 0000000..42e481e
--- /dev/null
+++ b/chrome/browser/sync/notifier/DEPS
@@ -0,0 +1,9 @@
+include_rules = [
+ # notifier depends on libjingle.
+ "+talk/base",
+ "+talk/xmpp",
+ "+talk/xmllite",
+ "+talk/p2p/base", # TODO(ncarter): Determine if this is necessary/proper.
+
+ "+third_party/smartany",
+]
diff --git a/chrome/browser/sync/notifier/base/string_unittest.cc b/chrome/browser/sync/notifier/base/string_unittest.cc
index 954315a..9e89f5a 100644
--- a/chrome/browser/sync/notifier/base/string_unittest.cc
+++ b/chrome/browser/sync/notifier/base/string_unittest.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "chrome/browser/sync/notifier/base/string.h"
-#include "notifier/testing/notifier/unittest.h"
namespace notifier {
diff --git a/chrome/browser/sync/notifier/base/time_unittest.cc b/chrome/browser/sync/notifier/base/time_unittest.cc
index 0a34b0a..0c440f9 100644
--- a/chrome/browser/sync/notifier/base/time_unittest.cc
+++ b/chrome/browser/sync/notifier/base/time_unittest.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "chrome/browser/sync/notifier/base/time.h"
-#include "notifier/testing/notifier/unittest.h"
namespace notifier {
diff --git a/chrome/browser/sync/notifier/communicator/mailbox_unittest.cc b/chrome/browser/sync/notifier/communicator/mailbox_unittest.cc
index 1d498d1..a705033 100644
--- a/chrome/browser/sync/notifier/communicator/mailbox_unittest.cc
+++ b/chrome/browser/sync/notifier/communicator/mailbox_unittest.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "chrome/browser/sync/notifier/communicator/mailbox.h"
-#include "notifier/testing/notifier/unittest.h"
namespace notifier {
TEST_NOTIFIER_F(MailBoxTest);