| 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 source_set("util") { | 5 source_set("util") { |
| 6 sources = [ | 6 sources = [ |
| 7 "CRUILabel+AttributeUtils.h", | 7 "CRUILabel+AttributeUtils.h", |
| 8 "CRUILabel+AttributeUtils.mm", | 8 "CRUILabel+AttributeUtils.mm", |
| 9 "core_text_util.h", | 9 "core_text_util.h", |
| 10 "core_text_util.mm", | 10 "core_text_util.mm", |
| 11 "label_link_controller.h", | 11 "label_link_controller.h", |
| 12 "label_link_controller.mm", | 12 "label_link_controller.mm", |
| 13 "label_observer.h", | 13 "label_observer.h", |
| 14 "label_observer.mm", | 14 "label_observer.mm", |
| 15 "manual_text_framer.h", | 15 "manual_text_framer.h", |
| 16 "manual_text_framer.mm", | 16 "manual_text_framer.mm", |
| 17 "pasteboard_util.h", |
| 18 "pasteboard_util.mm", |
| 17 "relaxed_bounds_constraints_hittest.h", | 19 "relaxed_bounds_constraints_hittest.h", |
| 18 "snapshot_util.h", | 20 "snapshot_util.h", |
| 19 "snapshot_util.mm", | 21 "snapshot_util.mm", |
| 20 "text_frame.h", | 22 "text_frame.h", |
| 21 "text_frame.mm", | 23 "text_frame.mm", |
| 22 "text_region_mapper.h", | 24 "text_region_mapper.h", |
| 23 "text_region_mapper.mm", | 25 "text_region_mapper.mm", |
| 24 "top_view_controller.h", | 26 "top_view_controller.h", |
| 25 "top_view_controller.mm", | 27 "top_view_controller.mm", |
| 26 "transparent_link_button.h", | 28 "transparent_link_button.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 50 ] | 52 ] |
| 51 deps = [ | 53 deps = [ |
| 52 ":util", | 54 ":util", |
| 53 "//base", | 55 "//base", |
| 54 "//ios/third_party/material_components_ios", | 56 "//ios/third_party/material_components_ios", |
| 55 "//ios/third_party/material_roboto_font_loader_ios", | 57 "//ios/third_party/material_roboto_font_loader_ios", |
| 56 "//testing/gtest", | 58 "//testing/gtest", |
| 57 "//url", | 59 "//url", |
| 58 ] | 60 ] |
| 59 } | 61 } |
| OLD | NEW |