• Home
  • Raw
  • Download

Lines Matching refs:gn

7 Skia uses [GN](https://chromium.googlesource.com/chromium/src/tools/gn/) to
53 bin/gn gen out/Static --args='is_official_build=true'
54 bin/gn gen out/Shared --args='is_official_build=true is_component_build=true'
56 If you find you don't have `bin/gn`, make sure you've run
62 bin/gn gen out/Debug
63 bin/gn gen out/Release --args='is_debug=false'
64 bin/gn gen out/Clang --args='cc="clang" cxx="clang++"'
65 bin/gn gen out/Cached --args='cc_wrapper="ccache"'
66 bin/gn gen out/RTTI --args='extra_cflags_cc=["-frtti"]'
70 bin/gn args out/Debug --list
102 bin/gn gen out/arm --args='ndk="/tmp/ndk" target_cpu="arm"'
103 bin/gn gen out/arm64 --args='ndk="/tmp/ndk" target_cpu="arm64"'
104 bin/gn gen out/x64 --args='ndk="/tmp/ndk" target_cpu="x64"'
105 bin/gn gen out/x86 --args='ndk="/tmp/ndk" target_cpu="x86"'
212 Mac users may want to pass `--ide=xcode` to `bin/gn gen` to generate an Xcode project.
220 bin/gn gen out/ios64 --args='target_os="ios"'
221 bin/gn gen out/ios32 --args='target_os="ios" target_cpu="arm"'
222 bin/gn gen out/iossim --args='target_os="ios" target_cpu="x64"'
235 Alternatively you can generate an Xcode project by passing `--ide=xcode` to `bin/gn gen`.
273 Setting the `cc` and `cxx` gn args is _not_ sufficient to build with clang-cl. These variables
283 If you use Visual Studio, you may want to pass `--ide=vs` to `bin/gn gen` to
290 Pass `--ide=vs` when running `bin/gn gen` for each one. Then:
292 python gn/gn_meta_sln.py
311 bin/gn gen out/win-arm64 --args='target_cpu="arm64" skia_use_angle=true'
323 bin/gn gen out/config --ide=json --json-ide-script=../../gn/gn_to_cmake.py