| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 "src/components/private/ThumbTrack/src/MDCThumbView.m", | 219 "src/components/private/ThumbTrack/src/MDCThumbView.m", |
| 220 "src/components/private/ThumbTrack/src/MaterialThumbTrack.h", | 220 "src/components/private/ThumbTrack/src/MaterialThumbTrack.h", |
| 221 ] | 221 ] |
| 222 include_dirs = [ | 222 include_dirs = [ |
| 223 "src/components/ActivityIndicator/src", | 223 "src/components/ActivityIndicator/src", |
| 224 "src/components/AnimationTiming/src", | 224 "src/components/AnimationTiming/src", |
| 225 "src/components/AppBar/src", | 225 "src/components/AppBar/src", |
| 226 "src/components/ButtonBar/src", | 226 "src/components/ButtonBar/src", |
| 227 "src/components/NavigationBar/src", | 227 "src/components/NavigationBar/src", |
| 228 "src/components/OverlayWindow/src", | 228 "src/components/OverlayWindow/src", |
| 229 | |
| 230 # TODO(crbug.com/684379): remove this include once it is not needed anymore. | |
| 231 "src/components/Snackbar/src/private", | |
| 232 "src/components/private/Application/src", | 229 "src/components/private/Application/src", |
| 233 "src/components/private/Color/src", | 230 "src/components/private/Color/src", |
| 234 "src/components/private/Icons/src", | 231 "src/components/private/Icons/src", |
| 235 "src/components/private/Icons/icons/ic_arrow_back/src", | 232 "src/components/private/Icons/icons/ic_arrow_back/src", |
| 236 "src/components/private/Icons/icons/ic_check/src", | 233 "src/components/private/Icons/icons/ic_check/src", |
| 237 "src/components/private/Icons/icons/ic_check_circle/src", | 234 "src/components/private/Icons/icons/ic_check_circle/src", |
| 238 "src/components/private/Icons/icons/ic_chevron_right/src", | 235 "src/components/private/Icons/icons/ic_chevron_right/src", |
| 239 "src/components/private/Icons/icons/ic_info/src", | 236 "src/components/private/Icons/icons/ic_info/src", |
| 240 "src/components/private/Icons/icons/ic_radio_button_unchecked/src", | 237 "src/components/private/Icons/icons/ic_radio_button_unchecked/src", |
| 241 "src/components/private/Icons/icons/ic_reorder/src", | 238 "src/components/private/Icons/icons/ic_reorder/src", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 ] | 331 ] |
| 335 } | 332 } |
| 336 } | 333 } |
| 337 | 334 |
| 338 foreach(icon_name, _icon_names) { | 335 foreach(icon_name, _icon_names) { |
| 339 material_component_icon_bundle("material_component_${icon_name}_bundle") { | 336 material_component_icon_bundle("material_component_${icon_name}_bundle") { |
| 340 visibility = [ ":material_components_ios" ] | 337 visibility = [ ":material_components_ios" ] |
| 341 icon_name = "$icon_name" | 338 icon_name = "$icon_name" |
| 342 } | 339 } |
| 343 } | 340 } |
| OLD | NEW |