blob: 77e9f238b2bd9480fb796fb58bb77f7608d9eeec [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/browser/gfx/gpu_service_webview.h"
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/test/test_suite.h"
#include "content/public/common/content_switches.h"
#include "mojo/core/embedder/embedder.h"
#include "ui/gl/gl_surface.h"
#include "ui/gl/test/gl_surface_test_support.h"
int main(int argc, char** argv) {
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
command_line->AppendSwitch(switches::kSingleProcess);
command_line->AppendSwitchASCII(switches::kDisableFeatures,
",Vulkan,UseSkiaRenderer");
command_line->AppendSwitchASCII(switches::kEnableFeatures,
",VizForWebViewDefault");
gl::GLSurfaceTestSupport::InitializeNoExtensionsOneOff();
android_webview::GpuServiceWebView::GetInstance();
base::TestSuite test_suite(argc, argv);
mojo::core::Init();
return test_suite.Run();
}