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

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

Issue 2743643002: [ObjC ARC] Converts ios/chrome/browser/ui/collection_view:collection_view to ARC. (Closed)
Patch Set: cleanup Created 3 years, 9 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
« no previous file with comments | « no previous file | ios/chrome/browser/ui/collection_view/collection_view_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("collection_view") { 5 source_set("collection_view") {
6 configs += [ "//build/config/compiler:enable_arc" ]
6 sources = [ 7 sources = [
7 "collection_view_controller.h", 8 "collection_view_controller.h",
8 "collection_view_controller.mm", 9 "collection_view_controller.mm",
9 "collection_view_model.h", 10 "collection_view_model.h",
10 "collection_view_model.mm", 11 "collection_view_model.mm",
11 ] 12 ]
12 deps = [ 13 deps = [
13 "//base", 14 "//base",
14 "//ios/chrome/browser/ui/material_components", 15 "//ios/chrome/browser/ui/material_components",
15 ] 16 ]
16 public_deps = [ 17 public_deps = [
17 "//ios/chrome/browser/ui/collection_view/cells", 18 "//ios/chrome/browser/ui/collection_view/cells",
18 "//ios/third_party/material_components_ios", 19 "//ios/third_party/material_components_ios",
19 ] 20 ]
20 } 21 }
21 22
22 source_set("test_support") { 23 source_set("test_support") {
23 testonly = true 24 testonly = true
24 sources = [ 25 sources = [
25 "collection_view_controller_test.h", 26 "collection_view_controller_test.h",
lpromero 2017/03/09 16:23:02 Is this on the list to be migrated too?
26 "collection_view_controller_test.mm", 27 "collection_view_controller_test.mm",
27 ] 28 ]
28 deps = [ 29 deps = [
29 ":collection_view", 30 ":collection_view",
30 "//base", 31 "//base",
31 "//ios/chrome/browser/ui/collection_view/cells", 32 "//ios/chrome/browser/ui/collection_view/cells",
32 "//ios/chrome/test:test_support", 33 "//ios/chrome/test:test_support",
33 "//ios/third_party/material_components_ios", 34 "//ios/third_party/material_components_ios",
34 "//testing/gtest", 35 "//testing/gtest",
35 "//ui/base", 36 "//ui/base",
(...skipping 10 matching lines...) Expand all
46 deps = [ 47 deps = [
47 ":collection_view", 48 ":collection_view",
48 "//base", 49 "//base",
49 "//ios/chrome/browser/ui/collection_view/cells", 50 "//ios/chrome/browser/ui/collection_view/cells",
50 "//ios/chrome/test:test_support", 51 "//ios/chrome/test:test_support",
51 "//ios/chrome/test/base", 52 "//ios/chrome/test/base",
52 "//ios/third_party/material_components_ios", 53 "//ios/third_party/material_components_ios",
53 "//testing/gtest", 54 "//testing/gtest",
54 ] 55 ]
55 } 56 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/ui/collection_view/collection_view_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698