OLD | NEW |
---|---|
(Empty) | |
1 # GN args template for a blimp Linux client. | |
2 # | |
3 # Add import to arg.gn in out directory and run gn gen on the directory to use. | |
4 # E.g. for out directory out/foo: | |
5 # echo "import(\"//build/args/blimp_linux_client.gn\")" > out/foo/args.gn | |
6 # gn gen out/foo | |
7 # | |
8 # This file contains Blimp linux client build args common to both | |
9 # official builds and personal development builds. | |
10 # Use gn args to add your own build preference args. | |
11 | |
12 use_aura = true | |
13 | |
14 # use_ozone is false. | |
Kevin M
2016/10/25 18:49:23
Why comment this instead of just setting it explic
perumaal
2016/10/25 23:02:40
I got tripped up by this and actually explicitly c
| |
15 | |
16 metrics_use_blimp = true | |
OLD | NEW |