Skip to content

Commit

Permalink
remove unnecessary assignment (#2573)
Browse files Browse the repository at this point in the history
  • Loading branch information
bridiver authored and mihaiplesa committed Jun 3, 2019
1 parent 7f2f4c0 commit da9b432
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build/android/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ copy("brave") {
visibility = [ "*" ]
deps = []
sources = []
apk_type = target_apk_base
file_name_part = ""
if (target_cpu == "arm64" || target_cpu == "x86_64" || apk_type == "mono") {
if (target_cpu == "arm64" ||
target_cpu == "x86_64" ||
target_apk_base == "mono") {
deps += ["//chrome/android:monochrome_public_apk"]
file_name_part = "Mono"
sources += [
"$root_out_dir/apks/MonochromePublic.apk"
]
} else if (apk_type == "modern") {
} else if (target_apk_base == "modern") {
deps += ["//chrome/android:chrome_modern_public_apk"]
file_name_part = "Modern"
sources += [
Expand Down

0 comments on commit da9b432

Please sign in to comment.