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

Unified Diff: mojo/tools/mopy/config.py

Issue 1348493002: Add fnl build target (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/tools/mopy/config.py
diff --git a/mojo/tools/mopy/config.py b/mojo/tools/mopy/config.py
index a0df490a2a10288c882c9023a07e8956bf284edb..eb2cb193c30360f352e78070b84a3230e32449fc 100644
--- a/mojo/tools/mopy/config.py
+++ b/mojo/tools/mopy/config.py
@@ -21,6 +21,7 @@ class Config(object):
OS_LINUX = "linux"
OS_MAC = "mac"
OS_WINDOWS = "windows"
+ OS_FNL = "fnl"
# Valid values for target_cpu (None is also valid):
ARCH_X86 = "x86"
@@ -45,7 +46,7 @@ class Config(object):
assert target_os in (None, Config.OS_ANDROID, Config.OS_IOS,
Config.OS_LINUX, Config.OS_MAC,
- Config.OS_WINDOWS)
+ Config.OS_WINDOWS, Config.OS_FNL)
viettrungluu 2015/09/15 23:48:23 "
cdotstout 2015/09/16 22:01:00 Done.
assert target_cpu in (None, Config.ARCH_X86, Config.ARCH_X64,
Config.ARCH_ARM)
assert isinstance(is_debug, bool)

Powered by Google App Engine
This is Rietveld 408576698