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

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

Issue 2672383002: [ObjC ARC] Converts ios/chrome/browser/ui/ntp/recent_tabs:unit_tests to ARC. (Closed)
Patch Set: Created 3 years, 10 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("recent_tabs") { 5 source_set("recent_tabs") {
6 sources = [ 6 sources = [
7 "recent_tabs_bridges.h", 7 "recent_tabs_bridges.h",
8 "recent_tabs_bridges.mm", 8 "recent_tabs_bridges.mm",
9 "recent_tabs_panel_controller.h", 9 "recent_tabs_panel_controller.h",
10 "recent_tabs_panel_controller.mm", 10 "recent_tabs_panel_controller.mm",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ] 42 ]
43 public_deps = [ 43 public_deps = [
44 "//components/sync_sessions", 44 "//components/sync_sessions",
45 ] 45 ]
46 allow_circular_includes_from = 46 allow_circular_includes_from =
47 [ "//ios/chrome/browser/ui/ntp/recent_tabs/views" ] 47 [ "//ios/chrome/browser/ui/ntp/recent_tabs/views" ]
48 libs = [ "UIKit.framework" ] 48 libs = [ "UIKit.framework" ]
49 } 49 }
50 50
51 source_set("unit_tests") { 51 source_set("unit_tests") {
52 configs += [ "//build/config/compiler:enable_arc" ]
52 testonly = true 53 testonly = true
53 sources = [ 54 sources = [
54 "recent_tabs_panel_controller_unittest.mm", 55 "recent_tabs_panel_controller_unittest.mm",
55 ] 56 ]
56 deps = [ 57 deps = [
57 ":recent_tabs", 58 ":recent_tabs",
58 "//base", 59 "//base",
59 "//components/browser_sync", 60 "//components/browser_sync",
60 "//components/browser_sync:test_support", 61 "//components/browser_sync:test_support",
61 "//components/signin/core/browser", 62 "//components/signin/core/browser",
(...skipping 20 matching lines...) Expand all
82 "//ios/chrome/app/strings", 83 "//ios/chrome/app/strings",
83 "//ios/chrome/browser/ui", 84 "//ios/chrome/browser/ui",
84 "//ios/chrome/browser/ui/tools_menu", 85 "//ios/chrome/browser/ui/tools_menu",
85 "//ios/chrome/test/app:test_support", 86 "//ios/chrome/test/app:test_support",
86 "//ios/chrome/test/earl_grey:test_support", 87 "//ios/chrome/test/earl_grey:test_support",
87 "//ios/third_party/earl_grey", 88 "//ios/third_party/earl_grey",
88 "//ios/web:test_support", 89 "//ios/web:test_support",
89 ] 90 ]
90 libs = [ "XCTest.framework" ] 91 libs = [ "XCTest.framework" ]
91 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698