@@ -188,7 +188,6 @@ if (current_os == "win") {
188188 is_ios = false
189189 is_linux = false
190190 is_mac = false
191- is_nacl = false
192191 is_posix = false
193192 is_win = true
194193} else if (current_os == " mac" ) {
@@ -200,7 +199,6 @@ if (current_os == "win") {
200199 is_ios = false
201200 is_linux = false
202201 is_mac = true
203- is_nacl = false
204202 is_posix = true
205203 is_win = false
206204} else if (current_os == " android" ) {
@@ -212,7 +210,6 @@ if (current_os == "win") {
212210 is_ios = false
213211 is_linux = false
214212 is_mac = false
215- is_nacl = false
216213 is_posix = true
217214 is_win = false
218215} else if (current_os == " chromeos" ) {
@@ -224,7 +221,6 @@ if (current_os == "win") {
224221 is_ios = false
225222 is_linux = true
226223 is_mac = false
227- is_nacl = false
228224 is_posix = true
229225 is_win = false
230226} else if (current_os == " nacl" ) {
@@ -239,7 +235,6 @@ if (current_os == "win") {
239235 is_ios = false
240236 is_linux = false
241237 is_mac = false
242- is_nacl = true
243238 is_posix = true
244239 is_win = false
245240} else if (current_os == " ios" ) {
@@ -251,7 +246,6 @@ if (current_os == "win") {
251246 is_ios = true
252247 is_linux = false
253248 is_mac = false
254- is_nacl = false
255249 is_posix = true
256250 is_win = false
257251} else if (current_os == " linux" ) {
@@ -263,7 +257,6 @@ if (current_os == "win") {
263257 is_ios = false
264258 is_linux = true
265259 is_mac = false
266- is_nacl = false
267260 is_posix = true
268261 is_win = false
269262} else if (current_os == " fuchsia" ) {
@@ -274,7 +267,6 @@ if (current_os == "win") {
274267 is_ios = false
275268 is_linux = true
276269 is_mac = false
277- is_nacl = false
278270 is_posix = true
279271 is_win = false
280272}
@@ -625,12 +617,6 @@ if (is_win) {
625617 } else {
626618 set_default_toolchain (" //build/toolchain/mac:ios_clang_arm" )
627619 }
628- } else if (is_nacl ) {
629- # TODO(GYP ): This will need to change when we get NaCl working
630- # on multiple platforms, but this whole block of code (how we define
631- # host_toolchain) needs to be reworked regardless to key off of host_os
632- # and host_cpu rather than the is_* variables.
633- host_toolchain = " //build/toolchain/linux:clang_x64"
634620}
635621
636622# ==============================================================================
0 commit comments