Don't declare pigweed variables as globals
Require targets to explicitly import pigweed variable definitions. This
moves out some necessary logic from the BUILDCONFIG.gn file.
Change-Id: If9c9fe5a680cc9d897a0e8a55889873be618ed84
diff --git a/pw_docgen/BUILD.gn b/pw_docgen/BUILD.gn
index c93b7a8..2784482 100644
--- a/pw_docgen/BUILD.gn
+++ b/pw_docgen/BUILD.gn
@@ -12,8 +12,11 @@
# License for the specific language governing permissions and limitations under
# the License.
-import("docs.gni")
+# gn-format disable
+import("//build_overrides/pigweed.gni")
+import("$dir_pigweed/legacy_target.gni")
+import("docs.gni")
pw_doc_group("docs") {
sources = [ "docs.rst" ]
}