Bug 1559213 Comment 23 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

```
@@ -765,17 +775,17 @@ def main():
 
     with open(args.config, "r") as fh:
         config = json.load(fh)
 
     topsrcdir = Path(__file__).parent.parent.parent.parent.resolve()
 
     vars_set = []
     for is_debug in (True, False):
-        for target_os in ("android", "linux", "mac", "openbsd", "win"):
+        for target_os in ("linux", "mac", "openbsd", "win"):
```
allows `mach python python/mozbuild/mozbuild/gn_processor.py dom/media/webrtc/third_party_build/gn-configs/webrtc.json` to run... im a bit afraid at what will come out of it.
```
@@ -765,17 +775,17 @@ def main():
 
     with open(args.config, "r") as fh:
         config = json.load(fh)
 
     topsrcdir = Path(__file__).parent.parent.parent.parent.resolve()
 
     vars_set = []
     for is_debug in (True, False):
-        for target_os in ("android", "linux", "mac", "openbsd", "win"):
+        for target_os in ("linux", "mac", "openbsd", "win"):
```
allows `mach python python/mozbuild/mozbuild/gn_processor.py dom/media/webrtc/third_party_build/gn-configs/webrtc.json` to run... im a bit afraid at what will come out of it.

**edit** well, that drops wayys too many android-related bits from the generated moz.build files, so someone (tm) on linux with the android sdk will have to run it for me ?

Back to Bug 1559213 Comment 23