| 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("reading_list") { | 5 source_set("reading_list") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "number_badge_view.h", | 8 "number_badge_view.h", |
| 9 "number_badge_view.mm", | 9 "number_badge_view.mm", |
| 10 "offline_page_native_content.h", | 10 "offline_page_native_content.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "//url", | 70 "//url", |
| 71 ] | 71 ] |
| 72 public_deps = [ | 72 public_deps = [ |
| 73 "//ios/chrome/browser/ui/collection_view", | 73 "//ios/chrome/browser/ui/collection_view", |
| 74 ] | 74 ] |
| 75 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] | 75 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] |
| 76 libs = [ "UIKit.framework" ] | 76 libs = [ "UIKit.framework" ] |
| 77 } | 77 } |
| 78 | 78 |
| 79 source_set("unit_tests") { | 79 source_set("unit_tests") { |
| 80 configs += [ "//build/config/compiler:enable_arc" ] |
| 80 testonly = true | 81 testonly = true |
| 81 sources = [ | 82 sources = [ |
| 82 "offline_page_native_content_unittest.mm", | 83 "offline_page_native_content_unittest.mm", |
| 83 "reading_list_collection_view_controller_unittest.mm", | 84 "reading_list_collection_view_controller_unittest.mm", |
| 84 "reading_list_coordinator_unittest.mm", | 85 "reading_list_coordinator_unittest.mm", |
| 85 ] | 86 ] |
| 86 deps = [ | 87 deps = [ |
| 87 ":reading_list", | 88 ":reading_list", |
| 88 "//base", | 89 "//base", |
| 89 "//components/favicon/core", | 90 "//components/favicon/core", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "resources/reading_list_side_swipe@2x.png", | 158 "resources/reading_list_side_swipe@2x.png", |
| 158 "resources/reading_list_side_swipe@3x.png", | 159 "resources/reading_list_side_swipe@3x.png", |
| 159 "resources/reading_list_toolbar_icon.png", | 160 "resources/reading_list_toolbar_icon.png", |
| 160 "resources/reading_list_toolbar_icon@2x.png", | 161 "resources/reading_list_toolbar_icon@2x.png", |
| 161 "resources/reading_list_toolbar_icon@3x.png", | 162 "resources/reading_list_toolbar_icon@3x.png", |
| 162 ] | 163 ] |
| 163 outputs = [ | 164 outputs = [ |
| 164 "{{bundle_resources_dir}}/{{source_file_part}}", | 165 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 165 ] | 166 ] |
| 166 } | 167 } |
| OLD | NEW |