OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # Specifies which images will be mirrored (i.e. flipped horizontally) for |
| 6 # right-to-left (RTL) languages. Each image in res/drawable* must appear in one |
| 7 # of the two lists below. For more info, see mirror_images.py. |
| 8 |
| 9 images_to_mirror = [ |
| 10 'ic_menu_search_holo_light.png', |
| 11 'ic_menu_share_holo_light.png', |
| 12 ] |
| 13 |
| 14 images_not_to_mirror = [ |
| 15 'ondemand_overlay.9.png', |
| 16 ] |
OLD | NEW |