| Index: content/test/ppapi/ppapi_browsertest.cc
|
| diff --git a/content/test/ppapi/ppapi_browsertest.cc b/content/test/ppapi/ppapi_browsertest.cc
|
| index 50ae717f229cc7360397fd31fc480900b51ff4b2..de67df11a48e722fda577811ab754b4c0dae21dd 100644
|
| --- a/content/test/ppapi/ppapi_browsertest.cc
|
| +++ b/content/test/ppapi/ppapi_browsertest.cc
|
| @@ -36,7 +36,13 @@ namespace {
|
| RunTest(STRIP_PREFIXES(test_name)); \
|
| }
|
|
|
| -TEST_PPAPI_OUT_OF_PROCESS(BrowserFont)
|
| +// Doesn't work in GN CrOS ozone builds yet, http://crbug.com/619765
|
| +#if defined(OS_CHROMEOS) && defined(USE_OZONE)
|
| +#define MAYBE_BrowserFont DISABLED_BrowserFont
|
| +#else
|
| +#define MAYBE_BrowserFont BrowserFont
|
| +#endif
|
| +TEST_PPAPI_OUT_OF_PROCESS(MAYBE_BrowserFont)
|
|
|
| TEST_PPAPI_IN_PROCESS(Buffer)
|
| TEST_PPAPI_OUT_OF_PROCESS(Buffer)
|
| @@ -131,7 +137,13 @@ TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Scrollbar)
|
| TEST_PPAPI_IN_PROCESS(TraceEvent)
|
| TEST_PPAPI_OUT_OF_PROCESS(TraceEvent)
|
|
|
| -TEST_PPAPI_OUT_OF_PROCESS(TrueTypeFont)
|
| +// Doesn't work in GN CrOS ozone builds yet, http://crbug.com/619765
|
| +#if defined(OS_CHROMEOS) && defined(USE_OZONE)
|
| +#define MAYBE_TrueTypeFont DISABLED_TrueTypeFont
|
| +#else
|
| +#define MAYBE_TrueTypeFont TrueTypeFont
|
| +#endif
|
| +TEST_PPAPI_OUT_OF_PROCESS(MAYBE_TrueTypeFont)
|
|
|
| TEST_PPAPI_IN_PROCESS(URLUtil)
|
| TEST_PPAPI_OUT_OF_PROCESS(URLUtil)
|
|
|