OLD | NEW |
1 # GN args template for a blimp engine. Works within a docker container. | 1 # GN args template for a blimp engine. Works within a docker container. |
2 # | 2 # |
3 # Add import to arg.gn in out directory and run gn gen on the directory to use. | 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: | 4 # E.g. for out directory out/foo: |
5 # echo "import(\"//build/args/blimp_engine.gn\")" > out/foo/args.gn | 5 # echo "import(\"//build/args/blimp_engine.gn\")" > out/foo/args.gn |
6 # gn gen out/foo | 6 # gn gen out/foo |
7 # | 7 # |
8 # Use gn args to add your own build preference args. | 8 # Use gn args to add your own build preference args. |
9 | 9 |
10 use_aura = true | 10 use_aura = true |
11 use_ozone = true | 11 use_ozone = true |
12 metrics_use_blimp = true | 12 metrics_use_blimp = true |
| 13 use_low_quality_image_interpolation = true |
13 | 14 |
14 # Not available within docker container. | 15 # Not available within docker container. |
15 use_alsa = false | 16 use_alsa = false |
16 use_pulseaudio = false | 17 use_pulseaudio = false |
17 use_cups = false | 18 use_cups = false |
18 use_glib = false | 19 use_glib = false |
OLD | NEW |