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

Side by Side Diff: ios/showcase/text_badge_view/BUILD.gn

Issue 2967113003: [ios showcase] Integrated TextBadgeView with Showcase. (Closed)
Patch Set: Added text badge to view controller and created egtest stub Created 3 years, 5 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
(Empty)
1 source_set("text_badge_view") {
2 sources = [
3 "text_badge_view_view_controller.h",
edchin 2017/07/07 04:38:03 I see why you reiterated the word 'view'. Please
gchatz 2017/07/07 04:40:38 New files should follow showcase convention where
edchin 2017/07/07 05:00:49 I agree with gchatz. But, I can see why you didn't
helenlyang 2017/07/07 16:31:12 Done.
4 "text_badge_view_view_controller.mm",
5 ]
6 deps = [
7 "//ios/chrome/browser/ui/reading_list:reading_list_ui",
8 ]
9 libs = [ "UIKit.framework" ]
10 configs += [ "//build/config/compiler:enable_arc" ]
11 }
12
13 source_set("eg_tests") {
14 testonly = true
15 sources = [
16 "text_badge_view_egtest.mm",
17 ]
18 deps = [
19 "//ios/chrome/browser/ui/reading_list:reading_list_ui",
20 "//ios/chrome/test/earl_grey:test_support",
21 "//ios/showcase/test",
22 "//ios/third_party/earl_grey",
23 "//ui/base",
24 ]
25 configs += [ "//build/config/compiler:enable_arc" ]
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698