aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Frolov <frolv@google.com>2020-01-02 15:00:26 -0800
committerAlexei Frolov <frolv@google.com>2020-01-02 15:00:26 -0800
commit213060fd225cd39be798a33ae5765e9dae7900c9 (patch)
treedb33c7d244dd60ee9e0da0982331ef6fb519de03
parentfb27737cd68f904c09ba93bd1221abbbf40647a9 (diff)
downloadpigweed-213060fd225cd39be798a33ae5765e9dae7900c9.tar.gz
Move pw_build_host_tools var to host_common.gni
This change moves the pw_build_host_tools variable from host.gni to host_common.gni, where it belongs. Change-Id: I8f7188900344d9ce7cff33a99b8725d5347b9b02
-rw-r--r--targets/host/host.gni2
-rw-r--r--targets/host/host_common.gni2
2 files changed, 2 insertions, 2 deletions
diff --git a/targets/host/host.gni b/targets/host/host.gni
index 451852f69..47a887bbc 100644
--- a/targets/host/host.gni
+++ b/targets/host/host.gni
@@ -35,5 +35,3 @@ if (host_os == "linux") {
} else {
assert(false, "Please define a host config for your system: $host_os")
}
-
-pw_build_host_tools = true
diff --git a/targets/host/host_common.gni b/targets/host/host_common.gni
index 9ff41c23c..b94023ba9 100644
--- a/targets/host/host_common.gni
+++ b/targets/host/host_common.gni
@@ -16,3 +16,5 @@ import("$dir_pigweed/pw_vars_default.gni")
# Configure backend for pw_dumb_io facade.
dir_pw_dumb_io_backend = "$dir_pw_dumb_io_stdio"
+
+pw_build_host_tools = true