Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # GN args template for the Headless Chrome library | |
| 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/headless.gn")' > out/foo/args.gn | |
| 6 # gn gen out/foo | |
| 7 # | |
| 8 # Use gn args to add your own build preference args. | |
| 9 | |
| 10 target_os = "linux" | |
|
Dirk Pranke
2016/03/31 01:47:30
I don't think you need to set this one.
Sami
2016/03/31 09:43:02
Removed.
| |
| 11 | |
| 12 use_ozone = true | |
| 13 | |
| 14 enable_basic_printing = false | |
| 15 enable_print_preview = false | |
| 16 enable_remoting = false | |
| 17 use_alsa = false | |
| 18 use_ash = false | |
| 19 use_cups = false | |
| 20 use_dbus = false | |
| 21 use_gconf = false | |
| 22 use_gio = false | |
| 23 use_kerberos = false | |
| 24 use_pulseaudio = false | |
| 25 use_udev = false | |
| OLD | NEW |