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 # |
| 10 # This list must be kept in sync with the blimp list in |
| 11 # //tools/mb/mb_config.pyl. |
9 | 12 |
10 use_aura = true | 13 use_aura = true |
11 use_ozone = true | 14 use_ozone = true |
12 ozone_auto_platforms = false | 15 ozone_auto_platforms = false |
13 ozone_platform = "headless" | 16 ozone_platform = "headless" |
14 ozone_platform_headless = true | 17 ozone_platform_headless = true |
15 metrics_use_blimp = true | 18 metrics_use_blimp = true |
16 use_low_quality_image_interpolation = true | 19 use_low_quality_image_interpolation = true |
17 | 20 |
18 # Not available within docker container. | 21 # Not available within docker container. |
19 use_alsa = false | 22 use_alsa = false |
20 use_pulseaudio = false | 23 use_pulseaudio = false |
21 use_cups = false | 24 use_cups = false |
22 use_glib = false | 25 use_glib = false |
OLD | NEW |