Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4432)

Unified Diff: chrome/browser/web_dev_style/resource_checker_test.py

Issue 1418513007: Move find_depot_tools.py to build/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/web_dev_style/resource_checker_test.py
diff --git a/chrome/browser/web_dev_style/resource_checker_test.py b/chrome/browser/web_dev_style/resource_checker_test.py
index f6cb0f2fa8b0c04eaf386237c23389999ec08400..64556f9f8b1820a363889172da418afbe46ce868 100755
--- a/chrome/browser/web_dev_style/resource_checker_test.py
+++ b/chrome/browser/web_dev_style/resource_checker_test.py
@@ -3,6 +3,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import find_depot_tools
Dirk Pranke 2015/10/23 22:07:53 this won't actually work, right? build isn't in th
Roland McGrath 2015/10/23 22:55:45 Right. This was a mistake left from a previous (m
from os import path as os_path
import re
import resource_checker
@@ -11,9 +12,8 @@ import test_util
import unittest
_HERE = os_path.dirname(os_path.abspath(__file__))
-sys_path.append(os_path.join(_HERE, '..', '..', '..', 'tools'))
+sys_path.append(os_path.join(_HERE, '..', '..', '..', 'build'))
-import find_depot_tools # pylint: disable=W0611
from testing_support.super_mox import SuperMoxTestBase

Powered by Google App Engine
This is Rietveld 408576698