Skip to content

Commit

Permalink
Set is_cobalt = false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
niranjanyardi committed Nov 13, 2024
1 parent b627190 commit feb328c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .gn
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ exec_script_whitelist =
"//tools/gritsettings/BUILD.gn",
]

# TODO(b/378960295): Convert python scripts to GN actions.
import("//cobalt/build/configs/cobalt.gni")
if (is_cobalt) {
exec_script_whitelist += [
"//starboard/tools/BUILD.gn",
"//starboard/build/config/sabi/BUILD.gn",
"//starboard/build/platform_path.gni",
]
}

2 changes: 2 additions & 0 deletions cobalt/build/configs/android-arm/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target_os = "android"
target_cpu = "arm"
is_cobalt = true

treat_warnings_as_errors = false
2 changes: 2 additions & 0 deletions cobalt/build/configs/android-arm64/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target_os = "android"
target_cpu = "arm64"
is_cobalt = true

treat_warnings_as_errors = false
2 changes: 2 additions & 0 deletions cobalt/build/configs/android-x86/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
target_os = "android"
target_cpu = "x86"
is_cobalt = true

treat_warnings_as_errors = false
1 change: 0 additions & 1 deletion cobalt/build/configs/chromium_android-arm/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
target_os = "android"
target_cpu = "arm"
is_cobalt = false
1 change: 0 additions & 1 deletion cobalt/build/configs/chromium_android-arm64/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
target_os = "android"
target_cpu = "arm64"
is_cobalt = false
1 change: 0 additions & 1 deletion cobalt/build/configs/chromium_android-x86/args.gn
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
target_os = "android"
target_cpu = "x86"
is_cobalt = false
1 change: 0 additions & 1 deletion cobalt/build/configs/chromium_linux-x64x11/args.gn
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
target_os = "linux"
target_cpu = "x64"
is_cobalt = false

# TODO(b/376141256): Decide if this flag is needed here or in .gclient file
chrome_pgo_phase = 0
2 changes: 1 addition & 1 deletion cobalt/build/configs/cobalt.gni
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
# configuration.

declare_args() {
is_cobalt = true
is_cobalt = false
}
1 change: 1 addition & 0 deletions cobalt/build/configs/linux-x64x11/args.gn
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
target_os = "linux"
target_cpu = "x64"
is_cobalt = true

use_ozone = true

Expand Down

0 comments on commit feb328c

Please sign in to comment.