Search code examples
chromium

rebrand GUI icons of Chromium


I am building my browser from Chromium on Windows. I carried out steps from this page: https://chromium.googlesource.com/chromium/src/+/main/docs/windows_build_instructions.md

It builds successfully and browser runs well. I also rebranded all pics in src\chrome\app\theme\chromium, but the logo icons in GUI are still chromium ones

enter image description here

Where can I change these in code?


Solution

  • To change those logo you can refer to my answer here

    Now to change the vectorized icon which is displayed in the tab bar, you should modify this file

    components/omnibox/browser/vector_icons/product.icon
    

    You can find more info about vectorized icons here

    This is how the code of vectorized icon looks like here

    Hope that helps!