summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authorkkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-22 19:20:22 +0000
committerkkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-22 19:20:22 +0000
commit3935b9cfebbfa7ce16cbabe7d93e9e1aedd05efc (patch)
treee0cded3bcb9bc0c75640281e1e2e6263242ea6c7 /chrome/test
parent855c4bae1a910dfd021a671d8150f8c87f5cb14b (diff)
downloadchromium_src-3935b9cfebbfa7ce16cbabe7d93e9e1aedd05efc.zip
chromium_src-3935b9cfebbfa7ce16cbabe7d93e9e1aedd05efc.tar.gz
chromium_src-3935b9cfebbfa7ce16cbabe7d93e9e1aedd05efc.tar.bz2
[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
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/chromedriver/DEPS6
-rw-r--r--chrome/test/chromedriver/chrome/DEPS9
-rw-r--r--chrome/test/chromedriver/chrome/log.cc3
-rw-r--r--chrome/test/chromedriver/net/DEPS6
4 files changed, 23 insertions, 1 deletions
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 <stdio.h>
#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",
+]