Chromium Code Reviews| Index: ios/showcase/text_badge_view/BUILD.gn |
| diff --git a/ios/showcase/text_badge_view/BUILD.gn b/ios/showcase/text_badge_view/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e0722d2771cfe4f0ede7d7e989d3cd15a7f95556 |
| --- /dev/null |
| +++ b/ios/showcase/text_badge_view/BUILD.gn |
| @@ -0,0 +1,26 @@ |
| +source_set("text_badge_view") { |
| + sources = [ |
| + "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.
|
| + "text_badge_view_view_controller.mm", |
| + ] |
| + deps = [ |
| + "//ios/chrome/browser/ui/reading_list:reading_list_ui", |
| + ] |
| + libs = [ "UIKit.framework" ] |
| + configs += [ "//build/config/compiler:enable_arc" ] |
| +} |
| + |
| +source_set("eg_tests") { |
| + testonly = true |
| + sources = [ |
| + "text_badge_view_egtest.mm", |
| + ] |
| + deps = [ |
| + "//ios/chrome/browser/ui/reading_list:reading_list_ui", |
| + "//ios/chrome/test/earl_grey:test_support", |
| + "//ios/showcase/test", |
| + "//ios/third_party/earl_grey", |
| + "//ui/base", |
| + ] |
| + configs += [ "//build/config/compiler:enable_arc" ] |
| +} |