| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//url", | 84 "//url", |
| 85 ] | 85 ] |
| 86 libs = [ | 86 libs = [ |
| 87 "MobileCoreServices.framework", | 87 "MobileCoreServices.framework", |
| 88 "QuartzCore.framework", | 88 "QuartzCore.framework", |
| 89 "UIKit.framework", | 89 "UIKit.framework", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| 92 | 92 |
| 93 source_set("unit_tests") { | 93 source_set("unit_tests") { |
| 94 configs += [ "//build/config/compiler:enable_arc" ] |
| 94 testonly = true | 95 testonly = true |
| 95 sources = [ | 96 sources = [ |
| 96 "favicon_view_provider_unittest.mm", | 97 "favicon_view_provider_unittest.mm", |
| 97 "history_entries_status_item_unittest.mm", | 98 "history_entries_status_item_unittest.mm", |
| 98 "history_entry_inserter_unittest.mm", | 99 "history_entry_inserter_unittest.mm", |
| 99 "history_entry_item_unittest.mm", | 100 "history_entry_item_unittest.mm", |
| 100 "history_search_view_controller_unittest.mm", | 101 "history_search_view_controller_unittest.mm", |
| 101 "history_util_unittest.mm", | 102 "history_util_unittest.mm", |
| 102 "tab_history_popup_controller_unittest.mm", | 103 "tab_history_popup_controller_unittest.mm", |
| 103 ] | 104 ] |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "//ios/third_party/earl_grey", | 230 "//ios/third_party/earl_grey", |
| 230 "//ios/web:test_support", | 231 "//ios/web:test_support", |
| 231 "//net", | 232 "//net", |
| 232 "//ui/base", | 233 "//ui/base", |
| 233 ] | 234 ] |
| 234 libs = [ | 235 libs = [ |
| 235 "UIKit.framework", | 236 "UIKit.framework", |
| 236 "XCTest.framework", | 237 "XCTest.framework", |
| 237 ] | 238 ] |
| 238 } | 239 } |
| OLD | NEW |