Skip to content

Commit

Permalink
Fix PGO
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert authored and isarkis committed Aug 23, 2024
1 parent 44b6391 commit 876c682
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ jobs:
# However, dind container ends up having / folder mounted on overlay
# filesystem, whereas /__w which contains Cobalt source code is on tmpfs.
TMPDIR: /__w/_temp
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions chrobalt/build/configs/linux-x64x11/args.gn
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,4 @@ enable_vr=false
use_kerberos=false

toolkit_views = true
chrome_pgo_phase = 0
16 changes: 8 additions & 8 deletions chrobalt/build/gn.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ def get_build_args(build_args_path):
_BUILD_TYPES = {
'debug': {
'symbol_level': 2,
'is_debug': 'true',
'is_asan': 'true',
'is_lsan': 'true',
'is_msan': 'true',
'is_debug': 'false',
'is_asan': 'false',
'is_lsan': 'false',
'is_msan': 'false',
},
'devel': {
'symbol_level': 1,
'is_debug': 'true',
'is_asan': 'true',
'is_lsan': 'true',
'is_msan': 'true',
'is_debug': 'false',
'is_asan': 'false',
'is_lsan': 'false',
'is_msan': 'false',
},
'qa': {
'symbol_level': 1,
Expand Down

0 comments on commit 876c682

Please sign in to comment.