Delete smiley and playing card suits from Noto Serif LGC.

Previously, the existance of the five characters in the Noto Serif
LGC fonts was causing them to override the versions in the Noto Color
Emoji font when a serif style was specified for text, leading to
inconsistent use of emoji in sans versus serif text.

The characters were removed using the following script:

import glob
from nototools import subset

CHARS_TO_DELETE = {
  0x263A, # WHITE SMILING FACE
  0x2660, # BLACK SPADE SUIT
  0x2663, # BLACK CLUB SUIT
  0x2665, # BLACK HEART SUIT
  0x2666, # BLACK DIAMOND SUIT
}

for font_file in glob.glob('NotoSerif-*.ttf'):
  subset.subset_font(
      font_file,
      'touched/' + font_file,
      exclude=CHARS_TO_DELETE)

Bug: 24740612
Change-Id: I0fa61a6035996a598fad59b86760cffc6d7ec350
diff --git a/other/NotoSerif-Bold.ttf b/other/NotoSerif-Bold.ttf
index 543c8a3..1c709a5 100644
--- a/other/NotoSerif-Bold.ttf
+++ b/other/NotoSerif-Bold.ttf
Binary files differ
diff --git a/other/NotoSerif-BoldItalic.ttf b/other/NotoSerif-BoldItalic.ttf
index 1c34610..f3eb7cc 100644
--- a/other/NotoSerif-BoldItalic.ttf
+++ b/other/NotoSerif-BoldItalic.ttf
Binary files differ
diff --git a/other/NotoSerif-Italic.ttf b/other/NotoSerif-Italic.ttf
index 0bc46d4..1b9e37b 100644
--- a/other/NotoSerif-Italic.ttf
+++ b/other/NotoSerif-Italic.ttf
Binary files differ
diff --git a/other/NotoSerif-Regular.ttf b/other/NotoSerif-Regular.ttf
index 13b40aa..bc7aa60 100644
--- a/other/NotoSerif-Regular.ttf
+++ b/other/NotoSerif-Regular.ttf
Binary files differ