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

Unified Diff: scripts/slave/recipe_modules/webrtc/chromium_config.py

Issue 1923883003: build: use class path bases, not strings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 4 years, 8 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 | « scripts/slave/recipe_modules/webrtc/chromium_android_config.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/webrtc/chromium_config.py
diff --git a/scripts/slave/recipe_modules/webrtc/chromium_config.py b/scripts/slave/recipe_modules/webrtc/chromium_config.py
index b148cb37862b7a1d2c84d5dd9b9f4c8e9f418095..d8036e98eb444ecb8ea369e21fd350dbe5fc7ffa 100644
--- a/scripts/slave/recipe_modules/webrtc/chromium_config.py
+++ b/scripts/slave/recipe_modules/webrtc/chromium_config.py
@@ -16,11 +16,10 @@ SUPPORTED_TARGET_ARCHS = ('intel', 'arm')
def webrtc_standalone(c):
_compiler_defaults(c)
- c.runtests.memory_tests_runner = Path('[CHECKOUT]', 'tools',
- 'valgrind-webrtc', 'webrtc_tests',
- platform_ext={'win': '.bat',
- 'mac': '.sh',
- 'linux': '.sh'})
+ c.runtests.memory_tests_runner = c.CHECKOUT_PATH.join(
+ 'tools', 'valgrind-webrtc', 'webrtc_tests',
+ platform_ext={'win': '.bat', 'mac': '.sh', 'linux': '.sh'})
+
@CONFIG_CTX(includes=['ninja', 'gcc', 'goma'])
def webrtc_gcc(c):
_compiler_defaults(c)
« no previous file with comments | « scripts/slave/recipe_modules/webrtc/chromium_android_config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698