| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//ios/chrome/browser/ui/keyboard", | 65 "//ios/chrome/browser/ui/keyboard", |
| 66 "//ios/chrome/browser/ui/material_components", | 66 "//ios/chrome/browser/ui/material_components", |
| 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 "//ui/strings", |
| 75 "//url", | 76 "//url", |
| 76 ] | 77 ] |
| 77 public_deps = [ | 78 public_deps = [ |
| 78 "//components/reading_list/ios", | 79 "//components/reading_list/ios", |
| 79 "//ios/chrome/browser/ui/collection_view", | 80 "//ios/chrome/browser/ui/collection_view", |
| 80 ] | 81 ] |
| 81 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] | 82 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] |
| 82 libs = [ "UIKit.framework" ] | 83 libs = [ "UIKit.framework" ] |
| 83 } | 84 } |
| 84 | 85 |
| 85 source_set("unit_tests") { | 86 source_set("unit_tests") { |
| 86 testonly = true | 87 testonly = true |
| 87 sources = [ | 88 sources = [ |
| 88 "offline_page_native_content_unittest.mm", | 89 "offline_page_native_content_unittest.mm", |
| 90 "reading_list_view_controller_container_unittest.mm", |
| 89 "reading_list_view_controller_unittest.mm", | 91 "reading_list_view_controller_unittest.mm", |
| 90 ] | 92 ] |
| 91 deps = [ | 93 deps = [ |
| 92 ":reading_list", | 94 ":reading_list", |
| 93 "//base", | 95 "//base", |
| 94 "//components/favicon/core", | 96 "//components/favicon/core", |
| 95 "//components/prefs", | 97 "//components/prefs", |
| 96 "//components/reading_list/ios", | 98 "//components/reading_list/ios", |
| 97 "//ios/chrome/browser/browser_state:test_support", | 99 "//ios/chrome/browser/browser_state:test_support", |
| 98 "//ios/chrome/browser/favicon", | 100 "//ios/chrome/browser/favicon", |
| 99 "//ios/chrome/browser/reading_list", | 101 "//ios/chrome/browser/reading_list", |
| 100 "//ios/chrome/browser/tabs", | 102 "//ios/chrome/browser/tabs", |
| 101 "//ios/chrome/browser/ui", | 103 "//ios/chrome/browser/ui", |
| 102 "//ios/chrome/browser/ui/static_content", | 104 "//ios/chrome/browser/ui/static_content", |
| 103 "//ios/web", | 105 "//ios/web", |
| 104 "//ios/web:test_support", | 106 "//ios/web:test_support", |
| 105 "//testing/gtest", | 107 "//testing/gtest", |
| 106 "//third_party/ocmock", | 108 "//third_party/ocmock", |
| 109 "//ui/base", |
| 107 ] | 110 ] |
| 108 } | 111 } |
| 109 | 112 |
| 110 source_set("eg_tests") { | 113 source_set("eg_tests") { |
| 111 testonly = true | 114 testonly = true |
| 112 sources = [ | 115 sources = [ |
| 113 "reading_list_egtest.mm", | 116 "reading_list_egtest.mm", |
| 114 ] | 117 ] |
| 115 deps = [ | 118 deps = [ |
| 116 ":reading_list", | 119 ":reading_list", |
| 117 "//base", | 120 "//base", |
| 118 "//components/reading_list/ios", | 121 "//components/reading_list/ios", |
| 119 "//ios/chrome/app/strings", | 122 "//ios/chrome/app/strings", |
| 120 "//ios/chrome/browser/reading_list", | 123 "//ios/chrome/browser/reading_list", |
| 121 "//ios/chrome/browser/ui/commands", | 124 "//ios/chrome/browser/ui/commands", |
| 122 "//ios/chrome/test/app:test_support", | 125 "//ios/chrome/test/app:test_support", |
| 123 "//ios/chrome/test/earl_grey:test_support", | 126 "//ios/chrome/test/earl_grey:test_support", |
| 124 "//ios/testing:ios_test_support", | 127 "//ios/testing:ios_test_support", |
| 125 "//ios/third_party/earl_grey", | 128 "//ios/third_party/earl_grey", |
| 126 "//ios/third_party/material_components_ios", | 129 "//ios/third_party/material_components_ios", |
| 127 "//ios/web:test_support", | 130 "//ios/web:test_support", |
| 128 ] | 131 ] |
| 129 libs = [ | 132 libs = [ |
| 130 "UIKit.framework", | 133 "UIKit.framework", |
| 131 "XCTest.framework", | 134 "XCTest.framework", |
| 132 ] | 135 ] |
| 133 } | 136 } |
| OLD | NEW |