aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ORGANIZATION.md2
-rw-r--r--python/servo/command_base.py8
2 files changed, 4 insertions, 6 deletions
diff --git a/ORGANIZATION.md b/ORGANIZATION.md
index d40d71fcdee..68a95d89400 100644
--- a/ORGANIZATION.md
+++ b/ORGANIZATION.md
@@ -69,8 +69,6 @@
* support
* android
* Libraries that require special handling for building for Android platforms
- * android-rs-glue
- * Library to integrate better with Android platforms
* rust-task_info
* Library for obtaining information about memory usage for a process
* target
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 1acf5abd832..450403e903b 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -362,10 +362,10 @@ class CommandBase(object):
env["OPENSSL_LIB_DIR"] = openssl_dir
env['OPENSSL_INCLUDE_DIR'] = path.join(env["GONKDIR"], "external/openssl/include")
- # FIXME: These are set because they are the variable names that
- # android-rs-glue expects. However, other submodules have makefiles that
- # reference the env var names above. Once glutin is enabled and set as
- # the default, we could modify the subproject makefiles to use the names
+ # These are set because they are the variable names that build-apk
+ # expects. However, other submodules have makefiles that reference
+ # the env var names above. Once glutin is enabled and set as the
+ # default, we could modify the subproject makefiles to use the names
# below and remove the vars above, to avoid duplication.
if "ANDROID_SDK" in env:
env["ANDROID_HOME"] = env["ANDROID_SDK"]