skia2/tools/lua/lua_app.cpp
bungeman 60e0fee6d4 Remove include of stdlib.h from SkTypes.h.
Unfortunately, immintrin.h (which is also included by SkTypes)
includes xmmintrin.h which includes mm_malloc.h which includes
stdlib.h for malloc even though, from the implementation, it is
difficult to see why.

Fortunately, arm_neon.h does not seem to be involved in such
shenanigans, so building for Android will keep things sane.

TBR=reed@google.com
Doesn't change Skia API, just moves an include.

Review URL: https://codereview.chromium.org/1313203003
2015-08-26 05:15:46 -07:00

63 lines
1.3 KiB
C++

/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkLua.h"
#include "SkGraphics.h"
#include "SkStream.h"
#include "SkData.h"
#include "SkOSFile.h"
#include <stdlib.h>
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
static SkData* read_into_data(const char file[]) {
SkData* data = SkData::NewFromFileName(file);
if (!data) {
data = SkData::NewEmpty();
}
return data;
}
int tool_main(int argc, char** argv);
int tool_main(int argc, char** argv) {
SkAutoGraphics ag;
SkLua L;
for (int i = 1; i < argc; ++i) {
SkData* data = NULL;
const void* ptr;
size_t len;
if (!strcmp(argv[i], "--lua") && i < argc-1) {
ptr = argv[i + 1];
len = strlen(argv[i + 1]);
i += 1;
} else {
data = read_into_data(argv[i]);
ptr = data->data();
len = data->size();
}
if (!L.runCode(ptr, len)) {
SkDebugf("failed to load %s\n", argv[i]);
exit(-1);
}
SkSafeUnref(data);
}
return 0;
}
#if !defined SK_BUILD_FOR_IOS
int main(int argc, char * const argv[]) {
return tool_main(argc, (char**) argv);
}
#endif