@@ -188,7 +188,6 @@ if (current_os == "win") {
188
188
is_ios = false
189
189
is_linux = false
190
190
is_mac = false
191
- is_nacl = false
192
191
is_posix = false
193
192
is_win = true
194
193
} else if (current_os == " mac" ) {
@@ -200,7 +199,6 @@ if (current_os == "win") {
200
199
is_ios = false
201
200
is_linux = false
202
201
is_mac = true
203
- is_nacl = false
204
202
is_posix = true
205
203
is_win = false
206
204
} else if (current_os == " android" ) {
@@ -212,7 +210,6 @@ if (current_os == "win") {
212
210
is_ios = false
213
211
is_linux = false
214
212
is_mac = false
215
- is_nacl = false
216
213
is_posix = true
217
214
is_win = false
218
215
} else if (current_os == " chromeos" ) {
@@ -224,7 +221,6 @@ if (current_os == "win") {
224
221
is_ios = false
225
222
is_linux = true
226
223
is_mac = false
227
- is_nacl = false
228
224
is_posix = true
229
225
is_win = false
230
226
} else if (current_os == " nacl" ) {
@@ -239,7 +235,6 @@ if (current_os == "win") {
239
235
is_ios = false
240
236
is_linux = false
241
237
is_mac = false
242
- is_nacl = true
243
238
is_posix = true
244
239
is_win = false
245
240
} else if (current_os == " ios" ) {
@@ -251,7 +246,6 @@ if (current_os == "win") {
251
246
is_ios = true
252
247
is_linux = false
253
248
is_mac = false
254
- is_nacl = false
255
249
is_posix = true
256
250
is_win = false
257
251
} else if (current_os == " linux" ) {
@@ -263,7 +257,6 @@ if (current_os == "win") {
263
257
is_ios = false
264
258
is_linux = true
265
259
is_mac = false
266
- is_nacl = false
267
260
is_posix = true
268
261
is_win = false
269
262
} else if (current_os == " fuchsia" ) {
@@ -274,7 +267,6 @@ if (current_os == "win") {
274
267
is_ios = false
275
268
is_linux = true
276
269
is_mac = false
277
- is_nacl = false
278
270
is_posix = true
279
271
is_win = false
280
272
}
@@ -625,12 +617,6 @@ if (is_win) {
625
617
} else {
626
618
set_default_toolchain (" //build/toolchain/mac:ios_clang_arm" )
627
619
}
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"
634
620
}
635
621
636
622
# ==============================================================================
0 commit comments