OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/locales.gni") | 5 import("//build/config/locales.gni") |
6 | 6 |
7 config("config") { | 7 config("config") { |
8 visibility = [ ":material_components_ios" ] | 8 visibility = [ ":material_components_ios" ] |
9 include_dirs = [ | 9 include_dirs = [ |
10 "src/components/AppBar/src", | 10 "src/components/AppBar/src", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 "src/components/Snackbar/src/private/MDCSnackbarMessageView.h", | 163 "src/components/Snackbar/src/private/MDCSnackbarMessageView.h", |
164 "src/components/Snackbar/src/private/MDCSnackbarMessageView.m", | 164 "src/components/Snackbar/src/private/MDCSnackbarMessageView.m", |
165 "src/components/Snackbar/src/private/MDCSnackbarOverlayView.h", | 165 "src/components/Snackbar/src/private/MDCSnackbarOverlayView.h", |
166 "src/components/Snackbar/src/private/MDCSnackbarOverlayView.m", | 166 "src/components/Snackbar/src/private/MDCSnackbarOverlayView.m", |
167 "src/components/Typography/src/MDCTypography.h", | 167 "src/components/Typography/src/MDCTypography.h", |
168 "src/components/Typography/src/MDCTypography.m", | 168 "src/components/Typography/src/MDCTypography.m", |
169 "src/components/Typography/src/MaterialTypography.h", | 169 "src/components/Typography/src/MaterialTypography.h", |
170 "src/components/private/Application/src/MaterialApplication.h", | 170 "src/components/private/Application/src/MaterialApplication.h", |
171 "src/components/private/Application/src/UIApplication+AppExtensions.h", | 171 "src/components/private/Application/src/UIApplication+AppExtensions.h", |
172 "src/components/private/Application/src/UIApplication+AppExtensions.m", | 172 "src/components/private/Application/src/UIApplication+AppExtensions.m", |
173 "src/components/private/Color/src/MaterialColor.h", | |
174 "src/components/private/Color/src/UIColor+MDC.h", | |
175 "src/components/private/Color/src/UIColor+MDC.m", | |
176 "src/components/private/Icons/icons/ic_arrow_back/src/MaterialIcons+ic_arrow
_back.h", | 173 "src/components/private/Icons/icons/ic_arrow_back/src/MaterialIcons+ic_arrow
_back.h", |
177 "src/components/private/Icons/icons/ic_arrow_back/src/MaterialIcons+ic_arrow
_back.m", | 174 "src/components/private/Icons/icons/ic_arrow_back/src/MaterialIcons+ic_arrow
_back.m", |
178 "src/components/private/Icons/icons/ic_check/src/MaterialIcons+ic_check.h", | 175 "src/components/private/Icons/icons/ic_check/src/MaterialIcons+ic_check.h", |
179 "src/components/private/Icons/icons/ic_check/src/MaterialIcons+ic_check.m", | 176 "src/components/private/Icons/icons/ic_check/src/MaterialIcons+ic_check.m", |
180 "src/components/private/Icons/icons/ic_check_circle/src/MaterialIcons+ic_che
ck_circle.h", | 177 "src/components/private/Icons/icons/ic_check_circle/src/MaterialIcons+ic_che
ck_circle.h", |
181 "src/components/private/Icons/icons/ic_check_circle/src/MaterialIcons+ic_che
ck_circle.m", | 178 "src/components/private/Icons/icons/ic_check_circle/src/MaterialIcons+ic_che
ck_circle.m", |
182 "src/components/private/Icons/icons/ic_chevron_right/src/MaterialIcons+ic_ch
evron_right.h", | 179 "src/components/private/Icons/icons/ic_chevron_right/src/MaterialIcons+ic_ch
evron_right.h", |
183 "src/components/private/Icons/icons/ic_chevron_right/src/MaterialIcons+ic_ch
evron_right.m", | 180 "src/components/private/Icons/icons/ic_chevron_right/src/MaterialIcons+ic_ch
evron_right.m", |
184 "src/components/private/Icons/icons/ic_info/src/MaterialIcons+ic_info.h", | 181 "src/components/private/Icons/icons/ic_info/src/MaterialIcons+ic_info.h", |
185 "src/components/private/Icons/icons/ic_info/src/MaterialIcons+ic_info.m", | 182 "src/components/private/Icons/icons/ic_info/src/MaterialIcons+ic_info.m", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 ] | 330 ] |
334 } | 331 } |
335 } | 332 } |
336 | 333 |
337 foreach(icon_name, _icon_names) { | 334 foreach(icon_name, _icon_names) { |
338 material_component_icon_bundle("material_component_${icon_name}_bundle") { | 335 material_component_icon_bundle("material_component_${icon_name}_bundle") { |
339 visibility = [ ":material_components_ios" ] | 336 visibility = [ ":material_components_ios" ] |
340 icon_name = "$icon_name" | 337 icon_name = "$icon_name" |
341 } | 338 } |
342 } | 339 } |
OLD | NEW |