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

Unified Diff: native_client_sdk/src/build_tools/parse_dsc.py

Issue 170973003: Add option BIONIC toolchain to NaCl SDK output (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: native_client_sdk/src/build_tools/parse_dsc.py
diff --git a/native_client_sdk/src/build_tools/parse_dsc.py b/native_client_sdk/src/build_tools/parse_dsc.py
index 42ef1ddfcf341e66cc933faec83d7ccbad8f13af..1088fef7098310dea41ad16d9e9583c8137568cd 100755
--- a/native_client_sdk/src/build_tools/parse_dsc.py
+++ b/native_client_sdk/src/build_tools/parse_dsc.py
@@ -9,7 +9,15 @@ import optparse
import os
import sys
-VALID_TOOLCHAINS = ['newlib', 'glibc', 'pnacl', 'win', 'linux', 'mac']
+VALID_TOOLCHAINS = [
+ 'bionic',
+ 'newlib',
+ 'glibc',
+ 'pnacl',
+ 'win',
+ 'linux',
+ 'mac',
+]
# 'KEY' : ( <TYPE>, [Accepted Values], <Required?>)
DSC_FORMAT = {

Powered by Google App Engine
This is Rietveld 408576698