| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 source_set("eg_tests") { | 126 source_set("eg_tests") { |
| 127 configs += [ "//build/config/compiler:enable_arc" ] | 127 configs += [ "//build/config/compiler:enable_arc" ] |
| 128 testonly = true | 128 testonly = true |
| 129 sources = [ | 129 sources = [ |
| 130 "reading_list_egtest.mm", | 130 "reading_list_egtest.mm", |
| 131 ] | 131 ] |
| 132 deps = [ | 132 deps = [ |
| 133 ":reading_list", | 133 ":reading_list", |
| 134 "//base", | 134 "//base", |
| 135 "//base/test:test_support", |
| 135 "//components/reading_list/core", | 136 "//components/reading_list/core", |
| 136 "//ios/chrome/app/strings", | 137 "//ios/chrome/app/strings", |
| 137 "//ios/chrome/app/theme:theme_grit", | 138 "//ios/chrome/app/theme:theme_grit", |
| 138 "//ios/chrome/browser/reading_list", | 139 "//ios/chrome/browser/reading_list", |
| 139 "//ios/chrome/browser/ui:ui", | 140 "//ios/chrome/browser/ui:ui", |
| 140 "//ios/chrome/browser/ui/commands", | 141 "//ios/chrome/browser/ui/commands", |
| 141 "//ios/chrome/test/app:test_support", | 142 "//ios/chrome/test/app:test_support", |
| 142 "//ios/chrome/test/earl_grey:test_support", | 143 "//ios/chrome/test/earl_grey:test_support", |
| 143 "//ios/testing:ios_test_support", | 144 "//ios/testing:ios_test_support", |
| 144 "//ios/testing/earl_grey:earl_grey_support", | 145 "//ios/testing/earl_grey:earl_grey_support", |
| 145 "//ios/third_party/earl_grey", | 146 "//ios/third_party/earl_grey", |
| 146 "//ios/third_party/material_components_ios", | 147 "//ios/third_party/material_components_ios", |
| 148 "//ios/web", |
| 149 "//ios/web:reload_type", |
| 147 "//ios/web:test_support", | 150 "//ios/web:test_support", |
| 148 ] | 151 ] |
| 149 libs = [ | 152 libs = [ |
| 150 "UIKit.framework", | 153 "UIKit.framework", |
| 151 "XCTest.framework", | 154 "XCTest.framework", |
| 152 ] | 155 ] |
| 153 } | 156 } |
| OLD | NEW |