aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD.public
diff options
context:
space:
mode:
authorGravatar benjaminwagner <benjaminwagner@google.com>2015-11-18 13:48:47 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-18 13:48:47 -0800
commita445cbccefb018b8163aae0a0c0a19c850a39be5 (patch)
tree4543813fc3aac5dede8940bf317dd17b2733ad1e /BUILD.public
parent8450cc3d3d5c6df6caad0445557871f48108d041 (diff)
In BUILD.public, remove compile-time dependency on GL.
Diffstat (limited to 'BUILD.public')
-rw-r--r--BUILD.public10
1 files changed, 2 insertions, 8 deletions
diff --git a/BUILD.public b/BUILD.public
index 4f8a99ed70..e76d879bce 100644
--- a/BUILD.public
+++ b/BUILD.public
@@ -25,7 +25,6 @@ BASE_SRCS = glob(
"src/gpu/gl/android/*",
"src/gpu/gl/egl/*",
"src/gpu/gl/glx/*",
- "src/gpu/gl/nacl/*",
"src/gpu/gl/iOS/*",
"src/gpu/gl/mac/*",
"src/gpu/gl/win/*",
@@ -45,7 +44,6 @@ BASE_SRCS = glob(
"src/fonts/*fontconfig*",
"src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
"src/gpu/gl/GrGLDefaultInterface_native.cpp",
- "src/gpu/gl/GrGLDefaultInterface_none.cpp",
# Exclude files that don't compile with the current DEFINES.
"src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
@@ -69,9 +67,6 @@ BASE_SRCS = glob(
# Platform-dependent SRCS for google3-default platform.
BASE_SRCS_UNIX = glob(
[
- "src/gpu/gl/GrGLDefaultInterface_native.cpp",
- "src/gpu/gl/glx/**/*.cpp",
- "src/gpu/gl/glx/**/*.h",
"src/opts/**/*.cpp",
"src/opts/**/*.h",
"src/ports/**/*.cpp",
@@ -113,8 +108,6 @@ BASE_SRCS_UNIX = glob(
BASE_SRCS_ANDROID = glob(
[
# TODO(benjaminwagner): Figure out how to compile with EGL.
- "src/gpu/gl/GrGLDefaultInterface_none.cpp",
- "src/gpu/gl/nacl/SkCreatePlatformGLContext_nacl.cpp",
"src/opts/**/*.cpp",
"src/opts/**/*.h",
"src/ports/**/*.cpp",
@@ -153,7 +146,6 @@ BASE_SRCS_ANDROID = glob(
# Platform-dependent SRCS for google3-default iOS.
BASE_SRCS_IOS = glob(
[
- "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp",
"src/opts/**/*.cpp",
"src/opts/**/*.h",
"src/ports/**/*.cpp",
@@ -424,6 +416,8 @@ cc_library(
deps = EXTERNAL_DEPS_ALL,
)
+# If you need Ganesh (GPU) support in Skia, please contact skia-team@google.com
+# for help.
cc_library(
name = "skia",
srcs = BASE_SRCS + BASE_SRCS_PLATFORM,