blob: 4e20c1d939a89e057cf5b235d21845a753eb1ac1 [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/android_webview_jni_registrar.h"
#include "android_webview/browser/deferred_gpu_command_service.h"
#include "base/android/jni_android.h"
#include "base/command_line.h"
#include "base/test/test_suite.h"
#include "content/public/common/content_switches.h"
#include "ui/gl/gl_surface.h"
#include "ui/gl/test/gl_surface_test_support.h"
int main(int argc, char** argv) {
android_webview::RegisterJni(base::android::AttachCurrentThread());
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kSingleProcess);
gl::GLSurfaceTestSupport::InitializeOneOff();
android_webview::DeferredGpuCommandService::SetInstance();
return base::TestSuite(argc, argv).Run();
}