blob: 86a45748a9aa64434bdc301cb74bd05768ec3af0 [file] [log] [blame]
chudy@google.com607357f2012-08-07 16:12:23 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "SkDebuggerGUI.h"
10#include <QApplication>
11
12int main(int argc, char *argv[]) {
13 QApplication a(argc, argv);
14 SkDebuggerGUI w;
15 w.show();
16 return a.exec();
17}