| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 configs += [ "//build/config/compiler:enable_arc" ] |
| 81 testonly = true | 81 testonly = true |
| 82 sources = [ | 82 sources = [ |
| 83 "offline_page_native_content_unittest.mm", | 83 "offline_page_native_content_unittest.mm", |
| 84 "reading_list_collection_view_controller_unittest.mm", | 84 "reading_list_collection_view_controller_unittest.mm", |
| 85 "reading_list_coordinator_unittest.mm", | 85 "reading_list_coordinator_unittest.mm", |
| 86 "reading_list_mediator_unittest.mm", |
| 86 ] | 87 ] |
| 87 deps = [ | 88 deps = [ |
| 88 ":reading_list", | 89 ":reading_list", |
| 89 "//base", | 90 "//base", |
| 91 "//base/test:test_support", |
| 90 "//components/favicon/core", | 92 "//components/favicon/core", |
| 91 "//components/favicon/core/test:test_support", | 93 "//components/favicon/core/test:test_support", |
| 92 "//components/prefs", | 94 "//components/prefs", |
| 93 "//components/reading_list/core", | 95 "//components/reading_list/core", |
| 94 "//components/url_formatter", | 96 "//components/url_formatter", |
| 95 "//ios/chrome/browser/browser_state:test_support", | 97 "//ios/chrome/browser/browser_state:test_support", |
| 96 "//ios/chrome/browser/favicon", | 98 "//ios/chrome/browser/favicon", |
| 97 "//ios/chrome/browser/reading_list", | 99 "//ios/chrome/browser/reading_list", |
| 98 "//ios/chrome/browser/tabs", | 100 "//ios/chrome/browser/tabs", |
| 99 "//ios/chrome/browser/ui", | 101 "//ios/chrome/browser/ui", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "resources/reading_list_side_swipe@2x.png", | 160 "resources/reading_list_side_swipe@2x.png", |
| 159 "resources/reading_list_side_swipe@3x.png", | 161 "resources/reading_list_side_swipe@3x.png", |
| 160 "resources/reading_list_toolbar_icon.png", | 162 "resources/reading_list_toolbar_icon.png", |
| 161 "resources/reading_list_toolbar_icon@2x.png", | 163 "resources/reading_list_toolbar_icon@2x.png", |
| 162 "resources/reading_list_toolbar_icon@3x.png", | 164 "resources/reading_list_toolbar_icon@3x.png", |
| 163 ] | 165 ] |
| 164 outputs = [ | 166 outputs = [ |
| 165 "{{bundle_resources_dir}}/{{source_file_part}}", | 167 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 166 ] | 168 ] |
| 167 } | 169 } |
| OLD | NEW |