OLD | NEW |
1 # GN args template for the Headless Chrome library | 1 # GN args template for the Headless Chrome library |
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/headless.gn")' > out/foo/args.gn | 5 # echo 'import("//build/args/headless.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_ozone = true | 10 use_ozone = true |
11 ozone_auto_platforms = false | 11 ozone_auto_platforms = false |
12 ozone_platform = "headless" | 12 ozone_platform = "headless" |
13 ozone_platform_headless = true | 13 ozone_platform_headless = true |
14 | 14 |
15 # In order to simplify deployment we build ICU data file | 15 # In order to simplify deployment we build ICU data file |
16 # into binary. | 16 # into binary. |
17 icu_use_data_file = false | 17 icu_use_data_file = false |
18 | 18 |
| 19 # Use embedded data instead external files for headless in order |
| 20 # to simplify deployment. |
| 21 v8_use_external_startup_data = false |
| 22 |
19 enable_basic_printing = false | 23 enable_basic_printing = false |
20 enable_nacl = false | 24 enable_nacl = false |
21 enable_print_preview = false | 25 enable_print_preview = false |
22 enable_remoting = false | 26 enable_remoting = false |
23 use_alsa = false | 27 use_alsa = false |
24 use_ash = false | 28 use_ash = false |
25 use_cups = false | 29 use_cups = false |
26 use_dbus = false | 30 use_dbus = false |
27 use_gconf = false | 31 use_gconf = false |
28 use_gio = false | 32 use_gio = false |
29 use_kerberos = false | 33 use_kerberos = false |
30 use_libpci = false | 34 use_libpci = false |
31 use_pulseaudio = false | 35 use_pulseaudio = false |
32 use_udev = false | 36 use_udev = false |
OLD | NEW |