From 0ae4613c52dd18d5f1a0c3cb0746b5af9f131ad5 Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Thu, 20 Jan 2022 09:46:23 -0800 Subject: [PATCH] Disable building examples by default (#30946) This should be paired with a recipe change to enable building the example on CI that I'll prepare shortly. --- examples/examples.gni | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/examples.gni b/examples/examples.gni index 6779ee16b905e..4c267169d37ef 100644 --- a/examples/examples.gni +++ b/examples/examples.gni @@ -4,6 +4,6 @@ declare_args() { # The example embedders may use dependencies not suitable on all platforms. - # Use this GN arg to disable building the examples. - build_embedder_examples = is_mac || is_linux + # Use this GN arg to enable building the examples. + build_embedder_examples = false }