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

Side by Side Diff: ios/chrome/browser/ui/autofill/cells/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
« no previous file with comments | « ios/chrome/browser/ui/autofill/BUILD.gn ('k') | ios/chrome/browser/ui/bookmarks/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("cells") {
6 sources = [
7 "cvc_item.h",
8 "cvc_item.mm",
9 "status_item.h",
10 "status_item.mm",
11 "storage_switch_item.h",
12 "storage_switch_item.mm",
13 ]
14
15 deps = [
16 "//components/resources",
17 "//components/strings",
18 "//ios/chrome/app/strings",
19 "//ios/chrome/app/theme",
20 "//ios/chrome/browser/ui/collection_view/cells",
21 "//ios/chrome/browser/ui/colors",
22 "//ios/public/provider/chrome/browser",
23 "//ios/public/provider/chrome/browser/ui",
24 "//ios/third_party/material_components_ios",
25 "//ios/third_party/material_roboto_font_loader_ios",
26 "//ui/base",
27 ]
28
29 configs += [ "//build/config/compiler:enable_arc" ]
30 }
31
32 source_set("unit_tests") {
33 testonly = true
34 sources = [
35 "cvc_item_unittest.mm",
36 "status_item_unittest.mm",
37 "storage_switch_item_unittest.mm",
38 ]
39
40 deps = [
41 ":cells",
42 "//base",
43 "//components/resources",
44 "//ios/chrome/browser/ui/collection_view/cells",
45 "//ios/third_party/material_components_ios",
46 "//testing/gtest",
47 ]
48
49 configs += [ "//build/config/compiler:enable_arc" ]
50 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/autofill/BUILD.gn ('k') | ios/chrome/browser/ui/bookmarks/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698