Hi
when i comile chromium for android platform, i found the enable_nacl is setted true by default. but chromium
not support nacl in android platform,
chrome/BUILD.gn
if (enable_nacl) {
bundle_data("chrome_framework_plugins") {
sources = []
outputs = [
"{{bundle_root_dir}}/Internet Plug-Ins/{{source_file_part}}",
]
public_deps = []
if (enable_nacl) {
if (current_cpu == "x86") {
sources += [ "$root_out_dir/nacl_irt_x86_32.nexe" ]
} else if (current_cpu == "x64") {
sources += [ "$root_out_dir/nacl_irt_x86_64.nexe" ]
}
public_deps += [ "//ppapi/native_client:irt" ]
}
}
} else {
group("chrome_framework_plugins") {
}
}
so what does this switch affect?