Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: ppapi/BUILD.gn

Issue 2242893002: [MIPS] Adding NaCl/PNaCl support for mipsel to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix non Linux builds Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/shell/BUILD.gn ('k') | ppapi/native_client/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 assert(!is_android || enable_plugins, 7 assert(!is_android || enable_plugins,
8 "//ppapi should not be referenced when is_android && !enable_plugins") 8 "//ppapi should not be referenced when is_android && !enable_plugins")
9 9
10 if (is_mac) { 10 if (is_mac) {
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 if (current_cpu == "pnacl") { 304 if (current_cpu == "pnacl") {
305 pretranslate_pexe = true 305 pretranslate_pexe = true
306 } 306 }
307 } 307 }
308 } 308 }
309 309
310 group("ppapi_nacl_tests_all") { 310 group("ppapi_nacl_tests_all") {
311 data_deps = [ 311 data_deps = [
312 ":copy_test_files", 312 ":copy_test_files",
313 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", 313 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})",
314 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})",
315 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", 314 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)",
316 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
317 ] 315 ]
316
317 if (target_cpu != "mipsel") {
318 data_deps +=
319 [ ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})" ]
320 }
321
322 if (is_linux && enable_nacl_nonsfi) {
323 data_deps +=
324 [ ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)" ]
325 }
318 } 326 }
319 } 327 }
OLDNEW
« no previous file with comments | « extensions/shell/BUILD.gn ('k') | ppapi/native_client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698