OLD | NEW |
---|---|
(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 } | |
OLD | NEW |