python -u /b/depot_tools/gn.py --root=/b/build/slave/Android_GN/build/src gen //out/Release --args=symbol_level=1 is_debug=false target_os="android" target_cpu="arm" use_goma=true goma_dir="/b/build/goma"
gn gen outandroidgn/Debug --args=target_os="android" target_cpu="arm"
ERROR Need exactly one build directory to generate.
I expected something more like "gn gen out/foo"
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
In working to create a GN based Android build I used a recent main waterfall build to find a gn command line:python -u /b/depot_tools/gn.py --root=/b/build/slave/Android_GN/build/src gen //out/Release --args=symbol_level=1 is_debug=false target_os="android" target_cpu="arm" use_goma=true goma_dir="/b/build/goma"However,gn gen outandroidgn/Debug --args=target_os="android" target_cpu="arm"
fails for me with:ERROR Need exactly one build directory to generate.I expected something more like "gn gen out/foo"I worked around easily by calling "gn args outandroidgn/Debug", but I'm confused why I can't reproduce the waterfall command line with gen and --args.
--
In working to create a GN based Android build I used a recent main waterfall build to find a gn command line:python -u /b/depot_tools/gn.py --root=/b/build/slave/Android_GN/build/src gen //out/Release --args=symbol_level=1 is_debug=false target_os="android" target_cpu="arm" use_goma=true goma_dir="/b/build/goma"However,gn gen outandroidgn/Debug --args=target_os="android" target_cpu="arm"
--