| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "//components/prefs", | 91 "//components/prefs", |
| 92 "//components/reading_list/core", | 92 "//components/reading_list/core", |
| 93 "//components/url_formatter", | 93 "//components/url_formatter", |
| 94 "//ios/chrome/browser/browser_state:test_support", | 94 "//ios/chrome/browser/browser_state:test_support", |
| 95 "//ios/chrome/browser/favicon", | 95 "//ios/chrome/browser/favicon", |
| 96 "//ios/chrome/browser/reading_list", | 96 "//ios/chrome/browser/reading_list", |
| 97 "//ios/chrome/browser/tabs", | 97 "//ios/chrome/browser/tabs", |
| 98 "//ios/chrome/browser/ui", | 98 "//ios/chrome/browser/ui", |
| 99 "//ios/chrome/browser/ui/static_content", | 99 "//ios/chrome/browser/ui/static_content", |
| 100 "//ios/web", | 100 "//ios/web", |
| 101 "//ios/web:test_support", | 101 "//ios/web/public/test:test_support", |
| 102 "//testing/gtest", | 102 "//testing/gtest", |
| 103 "//third_party/ocmock", | 103 "//third_party/ocmock", |
| 104 "//ui/base", | 104 "//ui/base", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 source_set("eg_tests") { | 108 source_set("eg_tests") { |
| 109 configs += [ "//build/config/compiler:enable_arc" ] | 109 configs += [ "//build/config/compiler:enable_arc" ] |
| 110 testonly = true | 110 testonly = true |
| 111 sources = [ | 111 sources = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 122 "//ios/chrome/browser/ui:ui", | 122 "//ios/chrome/browser/ui:ui", |
| 123 "//ios/chrome/browser/ui/commands", | 123 "//ios/chrome/browser/ui/commands", |
| 124 "//ios/chrome/test/app:test_support", | 124 "//ios/chrome/test/app:test_support", |
| 125 "//ios/chrome/test/earl_grey:test_support", | 125 "//ios/chrome/test/earl_grey:test_support", |
| 126 "//ios/testing:ios_test_support", | 126 "//ios/testing:ios_test_support", |
| 127 "//ios/testing/earl_grey:earl_grey_support", | 127 "//ios/testing/earl_grey:earl_grey_support", |
| 128 "//ios/third_party/earl_grey", | 128 "//ios/third_party/earl_grey", |
| 129 "//ios/third_party/material_components_ios", | 129 "//ios/third_party/material_components_ios", |
| 130 "//ios/web", | 130 "//ios/web", |
| 131 "//ios/web:reload_type", | 131 "//ios/web:reload_type", |
| 132 "//ios/web:test_support", | 132 "//ios/web/public/test:test_support", |
| 133 "//ios/web/public/test/response_providers:test_support", |
| 133 "//net", | 134 "//net", |
| 134 ] | 135 ] |
| 135 libs = [ | 136 libs = [ |
| 136 "UIKit.framework", | 137 "UIKit.framework", |
| 137 "XCTest.framework", | 138 "XCTest.framework", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| 140 | 141 |
| 141 bundle_data("resources") { | 142 bundle_data("resources") { |
| 142 sources = [ | 143 sources = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 156 "resources/reading_list_side_swipe@2x.png", | 157 "resources/reading_list_side_swipe@2x.png", |
| 157 "resources/reading_list_side_swipe@3x.png", | 158 "resources/reading_list_side_swipe@3x.png", |
| 158 "resources/reading_list_toolbar_icon.png", | 159 "resources/reading_list_toolbar_icon.png", |
| 159 "resources/reading_list_toolbar_icon@2x.png", | 160 "resources/reading_list_toolbar_icon@2x.png", |
| 160 "resources/reading_list_toolbar_icon@3x.png", | 161 "resources/reading_list_toolbar_icon@3x.png", |
| 161 ] | 162 ] |
| 162 outputs = [ | 163 outputs = [ |
| 163 "{{bundle_resources_dir}}/{{source_file_part}}", | 164 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 164 ] | 165 ] |
| 165 } | 166 } |
| OLD | NEW |