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

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

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 years 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
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("collection_view") {
6 sources = [
7 "collection_view_controller.h",
8 "collection_view_controller.mm",
9 "collection_view_model.h",
10 "collection_view_model.mm",
11 ]
12 deps = [
13 "//base",
14 "//ios/chrome/browser/ui/material_components",
15 ]
16 public_deps = [
17 "//ios/chrome/browser/ui/collection_view/cells",
18 "//ios/third_party/material_components_ios",
19 ]
20 }
21
22 source_set("test_support") {
23 testonly = true
24 sources = [
25 "collection_view_controller_test.h",
26 "collection_view_controller_test.mm",
27 ]
28 deps = [
29 ":collection_view",
30 "//base",
31 "//ios/chrome/browser/ui/collection_view/cells",
32 "//ios/chrome/test:test_support",
33 "//ios/third_party/material_components_ios",
34 "//testing/gtest",
35 "//ui/base",
36 ]
37 }
38
39 source_set("unit_tests") {
40 testonly = true
41 sources = [
42 "collection_view_controller_unittest.mm",
43 "collection_view_model_unittest.mm",
44 ]
45 deps = [
46 ":collection_view",
47 "//base",
48 "//ios/chrome/browser/ui/collection_view/cells",
49 "//ios/chrome/test:test_support",
50 "//ios/chrome/test/base",
51 "//ios/third_party/material_components_ios",
52 "//testing/gtest",
53 ]
54 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/bookmarks/cells/BUILD.gn ('k') | ios/chrome/browser/ui/collection_view/cells/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698