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

Unified Diff: tools_webrtc/mb/mb.py

Issue 2864213004: Rename tools-webrtc -> tools_webrtc (Closed)
Patch Set: REmove symlink Created 3 years, 7 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
« no previous file with comments | « tools_webrtc/mb/mb.bat ('k') | tools_webrtc/mb/mb_config.pyl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools_webrtc/mb/mb.py
diff --git a/tools-webrtc/mb/mb.py b/tools_webrtc/mb/mb.py
similarity index 99%
rename from tools-webrtc/mb/mb.py
rename to tools_webrtc/mb/mb.py
index c01d6abaf0aad9950ea27385f9ce257022daee38..d12ba389e499fb2c7f3ccbbb61bbca7e2893dbf0 100755
--- a/tools-webrtc/mb/mb.py
+++ b/tools_webrtc/mb/mb.py
@@ -619,7 +619,7 @@ class MetaBuildWrapper(object):
def ReadIOSBotConfig(self):
if not self.args.master or not self.args.builder:
return {}
- path = self.PathJoin(self.src_dir, 'tools-webrtc', 'ios',
+ path = self.PathJoin(self.src_dir, 'tools_webrtc', 'ios',
self.args.master,
self.args.builder.replace(' ', '_') + '.json')
if not self.Exists(path):
@@ -1077,7 +1077,7 @@ class MetaBuildWrapper(object):
memcheck = is_linux and 'rtc_use_memcheck=true' in vals['gn_args']
memcheck_cmdline = [
'bash',
- '../../tools-webrtc/valgrind/webrtc_tests.sh',
+ '../../tools_webrtc/valgrind/webrtc_tests.sh',
'--tool',
'memcheck',
'--target',
@@ -1090,12 +1090,12 @@ class MetaBuildWrapper(object):
if not memcheck:
extra_files += [
'../../third_party/gtest-parallel/gtest-parallel',
- '../../tools-webrtc/gtest-parallel-wrapper.py',
+ '../../tools_webrtc/gtest-parallel-wrapper.py',
]
sep = '\\' if self.platform == 'win32' else '/'
output_dir = '${ISOLATED_OUTDIR}' + sep + 'test_logs'
gtest_parallel_wrapper = [
- '../../tools-webrtc/gtest-parallel-wrapper.py',
+ '../../tools_webrtc/gtest-parallel-wrapper.py',
'--output_dir=%s' % output_dir,
'--gtest_color=no',
# We tell gtest-parallel to interrupt the test after 900 seconds,
« no previous file with comments | « tools_webrtc/mb/mb.bat ('k') | tools_webrtc/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698