1 diff --git a/mojo/public/mojom/base/file_path.mojom b/mojo/public/mojom/base/file_path.mojom 2 index 674d8cd..097b37e 100644 3 --- a/mojo/public/mojom/base/file_path.mojom 4 +++ b/mojo/public/mojom/base/file_path.mojom 5 @@ -5,7 +5,13 @@ 6 module mojo_base.mojom; 7 8 struct FilePath { 9 - [EnableIf=file_path_is_string] 10 + // In chrome, ninja have a goal that can define file_path_is_string for a set 11 + // of mojom files. 12 + // In android we don't have such ability ,one would have to add 13 + // "--enable_feature file_path_is_string" to all targets generating pickle 14 + // files, headers and sources, and also in all project including them. 15 + // Faster solution was to just remove this "EnableIf" definition in libchrome. 16 + // [EnableIf=file_path_is_string] 17 string path; 18 19 // This duplicates the contents of mojo_base.mojom.String16. String16 isn't 20