| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "src/components/Buttons/src/MDCButton.h", | 64 "src/components/Buttons/src/MDCButton.h", |
| 65 "src/components/Buttons/src/MDCButton.m", | 65 "src/components/Buttons/src/MDCButton.m", |
| 66 "src/components/Buttons/src/MDCFlatButton.h", | 66 "src/components/Buttons/src/MDCFlatButton.h", |
| 67 "src/components/Buttons/src/MDCFlatButton.m", | 67 "src/components/Buttons/src/MDCFlatButton.m", |
| 68 "src/components/Buttons/src/MDCFloatingButton.h", | 68 "src/components/Buttons/src/MDCFloatingButton.h", |
| 69 "src/components/Buttons/src/MDCFloatingButton.m", | 69 "src/components/Buttons/src/MDCFloatingButton.m", |
| 70 "src/components/Buttons/src/MDCRaisedButton.h", | 70 "src/components/Buttons/src/MDCRaisedButton.h", |
| 71 "src/components/Buttons/src/MDCRaisedButton.m", | 71 "src/components/Buttons/src/MDCRaisedButton.m", |
| 72 "src/components/Buttons/src/MaterialButtons.h", | 72 "src/components/Buttons/src/MaterialButtons.h", |
| 73 "src/components/Buttons/src/private/MDCButton+Subclassing.h", | 73 "src/components/Buttons/src/private/MDCButton+Subclassing.h", |
| 74 "src/components/CollectionCells/src/MDCCollectionViewCell+Ink.h", | |
| 75 "src/components/CollectionCells/src/MDCCollectionViewCell+Ink.m", | |
| 76 "src/components/CollectionCells/src/MDCCollectionViewCell.h", | 74 "src/components/CollectionCells/src/MDCCollectionViewCell.h", |
| 77 "src/components/CollectionCells/src/MDCCollectionViewCell.m", | 75 "src/components/CollectionCells/src/MDCCollectionViewCell.m", |
| 78 "src/components/CollectionCells/src/MDCCollectionViewTextCell.h", | 76 "src/components/CollectionCells/src/MDCCollectionViewTextCell.h", |
| 79 "src/components/CollectionCells/src/MDCCollectionViewTextCell.m", | 77 "src/components/CollectionCells/src/MDCCollectionViewTextCell.m", |
| 80 "src/components/CollectionCells/src/MaterialCollectionCells.h", | 78 "src/components/CollectionCells/src/MaterialCollectionCells.h", |
| 81 "src/components/CollectionLayoutAttributes/src/MDCCollectionViewLayoutAttrib
utes.h", | 79 "src/components/CollectionLayoutAttributes/src/MDCCollectionViewLayoutAttrib
utes.h", |
| 82 "src/components/CollectionLayoutAttributes/src/MDCCollectionViewLayoutAttrib
utes.m", | 80 "src/components/CollectionLayoutAttributes/src/MDCCollectionViewLayoutAttrib
utes.m", |
| 83 "src/components/CollectionLayoutAttributes/src/MaterialCollectionLayoutAttri
butes.h", | 81 "src/components/CollectionLayoutAttributes/src/MaterialCollectionLayoutAttri
butes.h", |
| 84 "src/components/Collections/src/MDCCollectionViewController.h", | 82 "src/components/Collections/src/MDCCollectionViewController.h", |
| 85 "src/components/Collections/src/MDCCollectionViewController.m", | 83 "src/components/Collections/src/MDCCollectionViewController.m", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 ] | 329 ] |
| 332 } | 330 } |
| 333 } | 331 } |
| 334 | 332 |
| 335 foreach(icon_name, _icon_names) { | 333 foreach(icon_name, _icon_names) { |
| 336 material_component_icon_bundle("material_component_${icon_name}_bundle") { | 334 material_component_icon_bundle("material_component_${icon_name}_bundle") { |
| 337 visibility = [ ":material_components_ios" ] | 335 visibility = [ ":material_components_ios" ] |
| 338 icon_name = "$icon_name" | 336 icon_name = "$icon_name" |
| 339 } | 337 } |
| 340 } | 338 } |
| OLD | NEW |