| 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/distillation_fail.png", | 7 "resources/distillation_fail.png", |
| 8 "resources/distillation_fail@2x.png", | 8 "resources/distillation_fail@2x.png", |
| 9 "resources/distillation_fail@3x.png", | 9 "resources/distillation_fail@3x.png", |
| 10 "resources/distillation_success.png", | 10 "resources/distillation_success.png", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "reading_list_toolbar.h", | 39 "reading_list_toolbar.h", |
| 40 "reading_list_toolbar.mm", | 40 "reading_list_toolbar.mm", |
| 41 "reading_list_view_controller.h", | 41 "reading_list_view_controller.h", |
| 42 "reading_list_view_controller.mm", | 42 "reading_list_view_controller.mm", |
| 43 "reading_list_view_controller_builder.h", | 43 "reading_list_view_controller_builder.h", |
| 44 "reading_list_view_controller_builder.mm", | 44 "reading_list_view_controller_builder.mm", |
| 45 "reading_list_view_controller_container.h", | 45 "reading_list_view_controller_container.h", |
| 46 "reading_list_view_controller_container.mm", | 46 "reading_list_view_controller_container.mm", |
| 47 ] | 47 ] |
| 48 deps = [ | 48 deps = [ |
| 49 ":resources", |
| 49 "//base", | 50 "//base", |
| 50 "//components/prefs", | 51 "//components/prefs", |
| 51 "//components/reading_list/core", | 52 "//components/reading_list/core", |
| 52 "//components/strings", | 53 "//components/strings", |
| 53 "//components/url_formatter", | 54 "//components/url_formatter", |
| 54 "//ios/chrome/app/strings", | 55 "//ios/chrome/app/strings", |
| 55 "//ios/chrome/browser", | 56 "//ios/chrome/browser", |
| 56 "//ios/chrome/browser/browser_state", | 57 "//ios/chrome/browser/browser_state", |
| 57 "//ios/chrome/browser/favicon", | 58 "//ios/chrome/browser/favicon", |
| 58 "//ios/chrome/browser/reading_list", | 59 "//ios/chrome/browser/reading_list", |
| 59 "//ios/chrome/browser/tabs", | 60 "//ios/chrome/browser/tabs", |
| 60 "//ios/chrome/browser/ui", | 61 "//ios/chrome/browser/ui", |
| 61 "//ios/chrome/browser/ui/alert_coordinator", | 62 "//ios/chrome/browser/ui/alert_coordinator", |
| 62 "//ios/chrome/browser/ui/collection_view/cells", | 63 "//ios/chrome/browser/ui/collection_view/cells", |
| 63 "//ios/chrome/browser/ui/colors", | 64 "//ios/chrome/browser/ui/colors", |
| 64 "//ios/chrome/browser/ui/keyboard", | 65 "//ios/chrome/browser/ui/keyboard", |
| 65 "//ios/chrome/browser/ui/material_components", | 66 "//ios/chrome/browser/ui/material_components", |
| 66 "//ios/chrome/browser/ui/reading_list:resources", | |
| 67 "//ios/chrome/browser/ui/side_swipe", | 67 "//ios/chrome/browser/ui/side_swipe", |
| 68 "//ios/chrome/browser/ui/static_content", | 68 "//ios/chrome/browser/ui/static_content", |
| 69 "//ios/chrome/common", | 69 "//ios/chrome/common", |
| 70 "//ios/third_party/material_components_ios", | 70 "//ios/third_party/material_components_ios", |
| 71 "//ios/third_party/material_roboto_font_loader_ios", | 71 "//ios/third_party/material_roboto_font_loader_ios", |
| 72 "//ios/web", | 72 "//ios/web", |
| 73 "//net", | 73 "//net", |
| 74 "//ui/base", | 74 "//ui/base", |
| 75 "//url", | 75 "//url", |
| 76 ] | 76 ] |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "//ios/testing:ios_test_support", | 124 "//ios/testing:ios_test_support", |
| 125 "//ios/third_party/earl_grey", | 125 "//ios/third_party/earl_grey", |
| 126 "//ios/third_party/material_components_ios", | 126 "//ios/third_party/material_components_ios", |
| 127 "//ios/web:test_support", | 127 "//ios/web:test_support", |
| 128 ] | 128 ] |
| 129 libs = [ | 129 libs = [ |
| 130 "UIKit.framework", | 130 "UIKit.framework", |
| 131 "XCTest.framework", | 131 "XCTest.framework", |
| 132 ] | 132 ] |
| 133 } | 133 } |
| OLD | NEW |