SkDebugger.cpp revision 902ebe5eb41a350b766238b3b103c22fe9fc0fb5
1
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}
18