<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2026 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- Transparent base to fix size to 40dp width -->
    <item>
        <shape>
            <size
                android:width="@dimen/glic_menu_end_icon_width"
                android:height="24dp" />
            <solid android:color="@android:color/transparent" />
        </shape>
    </item>
    <!-- LINT.IfChange -->
    <!-- Small dot centered vertically, pushed to the right.
         Left margin 23dp = 16dp (offset) + 7dp (margin). -->
    <item
        android:left="23dp"
        android:top="7dp"
        android:right="7dp"
        android:bottom="7dp">
        <shape android:shape="oval">
            <solid android:color="@macro/menu_button_dot_primary" />
            <size android:width="10dp" android:height="10dp" />
        </shape>
    </item>
    <!-- LINT.ThenChange(//chrome/browser/glic/android/java/res/values/dimens.xml) -->
</layer-list>
