| 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("history") { | 5 source_set("history") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "clear_browsing_bar.h", | 8 "clear_browsing_bar.h", |
| 9 "clear_browsing_bar.mm", | 9 "clear_browsing_bar.mm", |
| 10 "favicon_view.h", | 10 "favicon_view.h", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 sources = [ | 189 sources = [ |
| 190 "//ios/chrome/test/data/favicon/test_favicon.png", | 190 "//ios/chrome/test/data/favicon/test_favicon.png", |
| 191 ] | 191 ] |
| 192 outputs = [ | 192 outputs = [ |
| 193 "{{bundle_resources_dir}}/" + | 193 "{{bundle_resources_dir}}/" + |
| 194 "ios/chrome/test/data/favicon/{{source_file_part}}", | 194 "ios/chrome/test/data/favicon/{{source_file_part}}", |
| 195 ] | 195 ] |
| 196 } | 196 } |
| 197 | 197 |
| 198 source_set("eg_tests") { | 198 source_set("eg_tests") { |
| 199 configs += [ "//build/config/compiler:enable_arc" ] |
| 199 testonly = true | 200 testonly = true |
| 200 sources = [ | 201 sources = [ |
| 201 "history_ui_egtest.mm", | 202 "history_ui_egtest.mm", |
| 202 "tab_history_popup_controller_egtest.mm", | 203 "tab_history_popup_controller_egtest.mm", |
| 203 ] | 204 ] |
| 204 deps = [ | 205 deps = [ |
| 205 ":history", | 206 ":history", |
| 206 "//base", | 207 "//base", |
| 207 "//components/browsing_data/core", | 208 "//components/browsing_data/core", |
| 208 "//components/prefs", | 209 "//components/prefs", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 222 "//ios/third_party/earl_grey", | 223 "//ios/third_party/earl_grey", |
| 223 "//ios/web:test_support", | 224 "//ios/web:test_support", |
| 224 "//net", | 225 "//net", |
| 225 "//ui/base", | 226 "//ui/base", |
| 226 ] | 227 ] |
| 227 libs = [ | 228 libs = [ |
| 228 "UIKit.framework", | 229 "UIKit.framework", |
| 229 "XCTest.framework", | 230 "XCTest.framework", |
| 230 ] | 231 ] |
| 231 } | 232 } |
| OLD | NEW |