Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e73db291 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Use -Werror in frameworks/native/opengl/tests" am: 5de5abde

am: 7b8ff05d

Change-Id: I253c3e7726ec0f53a4f9cd558bc681360c1c6bfd
parents ad06c85c 7b8ff05d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@ cc_test {
        "EGL_test.cpp",
    ],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    shared_libs: [
        "android.hardware.configstore@1.0",
        "android.hardware.configstore-utils",
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@ cc_test {
        "demo.c",
    ],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    gtest: false,

    shared_libs: [
+0 −4
Original line number Diff line number Diff line
@@ -62,9 +62,6 @@ using namespace android;

int gAppAlive = 1;

static const char sAppName[] =
        "San Angeles Observation OpenGL ES version example (Linux)";

static int sWindowWidth = WINDOW_DEFAULT_WIDTH;
static int sWindowHeight = WINDOW_DEFAULT_HEIGHT;
static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
@@ -132,7 +129,6 @@ static int initGraphics(EGLint samples, const WindowSurface& windowSurface)
    EGLContext context;
    EGLConfig config;
    EGLSurface surface;
    EGLint w, h;
    EGLDisplay dpy;

    EGLNativeWindowType window = windowSurface.getSurface();
+5 −0
Original line number Diff line number Diff line
@@ -5,6 +5,11 @@ cc_test {

    srcs: ["configdump.cpp"],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    shared_libs: [
        "libcutils",
        "libEGL",
+5 −0
Original line number Diff line number Diff line
@@ -3,6 +3,11 @@ cc_test {

    srcs: ["fillrate.cpp"],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    gtest: false,

    shared_libs: [
Loading