From 3935b9cfebbfa7ce16cbabe7d93e9e1aedd05efc Mon Sep 17 00:00:00 2001 From: "kkania@chromium.org" Date: Mon, 22 Jul 2013 19:20:22 +0000 Subject: [chromedriver] Add DEPS files for chrome automation and net dir. These modules should not depend on chromedriver code. BUG=none Review URL: https://chromiumcodereview.appspot.com/19467004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212935 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/chromedriver/DEPS | 6 ++++++ chrome/test/chromedriver/chrome/DEPS | 9 +++++++++ chrome/test/chromedriver/chrome/log.cc | 3 ++- chrome/test/chromedriver/net/DEPS | 6 ++++++ 4 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 chrome/test/chromedriver/chrome/DEPS create mode 100644 chrome/test/chromedriver/net/DEPS (limited to 'chrome/test') diff --git a/chrome/test/chromedriver/DEPS b/chrome/test/chromedriver/DEPS index 9045de5..0d83e87 100644 --- a/chrome/test/chromedriver/DEPS +++ b/chrome/test/chromedriver/DEPS @@ -1,4 +1,10 @@ include_rules = [ + # These files should not depend on browser code. + "-chrome", + "-content", + + "+chrome/test/chromedriver", + "+third_party/mongoose", "+third_party/webdriver", "+third_party/zlib", diff --git a/chrome/test/chromedriver/chrome/DEPS b/chrome/test/chromedriver/chrome/DEPS new file mode 100644 index 0000000..efb11fcb --- /dev/null +++ b/chrome/test/chromedriver/chrome/DEPS @@ -0,0 +1,9 @@ +include_rules = [ + # These files should not depend on chromedriver code. + "-chrome/test/chromedriver", + + "+chrome/test/chromedriver/chrome", + "+chrome/test/chromedriver/extension", + "+chrome/test/chromedriver/js", + "+chrome/test/chromedriver/net", +] diff --git a/chrome/test/chromedriver/chrome/log.cc b/chrome/test/chromedriver/chrome/log.cc index 23e7649e..d272a55 100644 --- a/chrome/test/chromedriver/chrome/log.cc +++ b/chrome/test/chromedriver/chrome/log.cc @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/test/chromedriver/chrome/log.h" + #include #include "base/json/json_reader.h" @@ -9,7 +11,6 @@ #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "base/values.h" -#include "chrome/test/chromedriver/logging.h" namespace { diff --git a/chrome/test/chromedriver/net/DEPS b/chrome/test/chromedriver/net/DEPS new file mode 100644 index 0000000..4ffb644 --- /dev/null +++ b/chrome/test/chromedriver/net/DEPS @@ -0,0 +1,6 @@ +include_rules = [ + # These files should not depend on chromedriver code. + "-chrome/test/chromedriver", + + "+chrome/test/chromedriver/net", +] -- cgit v1.1