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 # This file contains Blimp engine build args common to both | 8 # This file contains Blimp engine build args common to both |
9 # official builds and personal development builds. | 9 # official builds and personal development builds. |
10 # Use gn args to add your own build preference args. | 10 # Use gn args to add your own build preference args. |
11 | 11 |
12 use_aura = true | 12 use_aura = true |
13 use_ozone = true | 13 use_ozone = true |
14 ozone_auto_platforms = false | 14 ozone_auto_platforms = false |
15 ozone_platform = "headless" | 15 ozone_platform = "headless" |
16 ozone_platform_headless = true | 16 ozone_platform_headless = true |
17 metrics_use_blimp = true | 17 metrics_use_blimp = true |
18 use_low_quality_image_interpolation = true | 18 use_low_quality_image_interpolation = true |
19 use_external_popup_menu = true | 19 use_external_popup_menu = true |
20 | 20 |
21 # Not available within docker container. | 21 # Not available within docker container. |
22 use_alsa = false | 22 use_alsa = false |
23 use_pulseaudio = false | 23 use_pulseaudio = false |
24 use_cups = false | 24 use_cups = false |
25 use_glib = false | 25 use_glib = false |
| 26 |
| 27 # udev is not supported on targeted platform and also not something that will |
| 28 # be used by Blimp Engine. |
| 29 use_udev = false |
OLD | NEW |