Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Side by Side Diff: ios/chrome/browser/ui/history/BUILD.gn

Issue 2650423002: [ObjC ARC] Converts ios/chrome/browser/ui/history:unit_tests to ARC. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698