Lines Matching refs:gn
7 You just run `gn` from the command line. For large projects, GN is versioned
15 * For Fuchsia in-tree development, run `fx gn ...` which will find the right
33 gn gen out/my_build
41 gn args out/my_build
56 gn args --list out/my_build
64 configuration](http://www.chromium.org/developers/gn-build-configuration)
69 Run `gn args out/Default` (substituting your build directory as needed) and
91 `tutorial.cc` file that's not hooked up to the build. Create a new `BUILD.gn`
102 Now we just need to tell the build about this new target. Open the `BUILD.gn`
108 the `simple_build/BUILD.gn` file, but it usually doesn't make a lot of sense to
117 # of our new target. Run "gn help labels" for more.
128 gn gen out
146 [examples/simple_build/BUILD.gn](../examples/simple_build/BUILD.gn). There is a
198 the current BUILD.gn file.
269 $ gn gen out
306 See `gn help buildargs` for an overview of how this works.
307 See `gn help declare_args` for specifics on declaring them.
319 You can run `gn desc <build_dir> <targetname>` to get information about
323 gn desc out/Default //foo/bar:say_hello
331 > gn desc out/Default //foo/bar:say_hello defines --blame
334 (Added by //foo/bar/BUILD.gn:12)
341 gn desc out/Default //base:base_i18n deps --tree
344 See `gn help desc` for more.