Chromium Code Reviews| Index: chrome/test/ppapi/ppapi_browsertest.cc |
| diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc |
| index 5eb357535ef5feefe611e53bcb333e4b89ca72e3..0476aa7b294d64ebc482e7e86a6a3b883051e504 100644 |
| --- a/chrome/test/ppapi/ppapi_browsertest.cc |
| +++ b/chrome/test/ppapi/ppapi_browsertest.cc |
| @@ -1181,7 +1181,13 @@ TEST_PPAPI_NACL(MouseCursor) |
| TEST_PPAPI_NACL(NetworkProxy) |
| -TEST_PPAPI_NACL(TrueTypeFont) |
| +// Doesn't work in GN CrOS ozone builds yet, http://crbug.com/619765 |
|
sky
2017/05/03 04:42:38
Minor comment. Please use TODO, e.g.:
// TODO: get
kylechar
2017/05/03 13:39:47
Done.
|
| +#if defined(OS_CHROMEOS) && defined(USE_OZONE) |
| +#define MAYBE_TrueTypeFont DISABLED_TrueTypeFont |
| +#else |
| +#define MAYBE_TrueTypeFont TrueTypeFont |
| +#endif |
| +TEST_PPAPI_NACL(MAYBE_TrueTypeFont) |
| // TODO(crbug.com/602875), TODO(crbug.com/602876) Flaky on Win and CrOS. |
| #if defined(OS_CHROMEOS) || defined(OS_WIN) |