Derive Serialize and Deserialize traits for font styles for #[cfg_attr(feature = "servo")]

This commit is contained in:
Utsav Oza 2020-06-12 18:43:09 +05:30
parent 6c86429082
commit 8372cf1bd8
5 changed files with 8 additions and 23 deletions

View file

@ -2601,7 +2601,8 @@ pub mod style_structs {
% for style_struct in data.active_style_structs():
% if style_struct.name == "Font":
#[derive(Clone, Debug, MallocSizeOf, Serialize, Deserialize)]
#[derive(Clone, Debug, MallocSizeOf)]
#[cfg_attr(feature = "servo", derive(Serialize, Deserialize))]
% else:
#[derive(Clone, Debug, MallocSizeOf, PartialEq)]
% endif