| Index: build/config/BUILD.gn
|
| diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
|
| index 23d22857f5e71c1a46796e1acdee40782bffdd78..9200bced804f8e4b60565accb84c30c8b9352b9d 100644
|
| --- a/build/config/BUILD.gn
|
| +++ b/build/config/BUILD.gn
|
| @@ -74,25 +74,6 @@ config("feature_flags") {
|
| if (enable_pdf) {
|
| defines += [ "ENABLE_PDF=1" ]
|
| }
|
| - if (enable_basic_printing || enable_print_preview) {
|
| - # Convenience define for ENABLE_BASIC_PRINTING || ENABLE_PRINT_PREVIEW.
|
| - defines += [ "ENABLE_PRINTING=1" ]
|
| - if (enable_basic_printing) {
|
| - # Enable basic printing support and UI.
|
| - defines += [ "ENABLE_BASIC_PRINTING=1" ]
|
| - }
|
| - if (enable_print_preview) {
|
| - # Enable printing with print preview.
|
| - # Can be defined without ENABLE_BASIC_PRINTING.
|
| - defines += [ "ENABLE_PRINT_PREVIEW=1" ]
|
| - }
|
| - if ((enable_basic_printing && is_win) || enable_print_preview) {
|
| - # Windows basic printing or print preview requires pdf enabled.
|
| - assert(enable_pdf,
|
| - "Windows basic printing or print preview needs pdf: " +
|
| - "set enable_pdf=true.")
|
| - }
|
| - }
|
| if (enable_spellcheck) {
|
| defines += [ "ENABLE_SPELLCHECK=1" ]
|
| }
|
|
|