GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2017-07-13 19:50:03 +00:00
|
|
|
import("gn/flutter_defines.gni")
|
2018-11-12 14:27:05 +00:00
|
|
|
import("gn/fuchsia_defines.gni")
|
2016-09-12 23:51:58 +00:00
|
|
|
import("gn/shared_sources.gni")
|
2019-02-04 20:36:31 +00:00
|
|
|
import("gn/skia.gni")
|
2016-09-01 21:24:39 +00:00
|
|
|
|
2017-04-17 20:36:39 +00:00
|
|
|
if (is_fuchsia) {
|
2019-05-06 23:44:06 +00:00
|
|
|
import("//build/fuchsia/sdk.gni")
|
2017-04-17 20:36:39 +00:00
|
|
|
import("//build/vulkan/config.gni")
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:38:25 +00:00
|
|
|
declare_args() {
|
|
|
|
skia_enable_flutter_defines = false
|
|
|
|
}
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
declare_args() {
|
2016-11-14 14:53:13 +00:00
|
|
|
skia_use_angle = false
|
2017-03-29 15:19:01 +00:00
|
|
|
skia_use_egl = false
|
2016-08-24 16:55:56 +00:00
|
|
|
skia_use_expat = true
|
2019-06-12 14:20:44 +00:00
|
|
|
skia_use_experimental_xform = false
|
2019-05-17 20:50:51 +00:00
|
|
|
skia_use_ffmpeg = false
|
2016-08-29 20:26:14 +00:00
|
|
|
skia_use_fontconfig = is_linux
|
2018-11-28 13:58:47 +00:00
|
|
|
skia_use_fonthost_mac = is_mac
|
2016-09-12 22:15:44 +00:00
|
|
|
skia_use_freetype = is_android || is_fuchsia || is_linux
|
2018-11-15 20:54:59 +00:00
|
|
|
skia_use_fixed_gamma_text = is_android
|
2016-08-24 16:55:56 +00:00
|
|
|
skia_use_libjpeg_turbo = true
|
|
|
|
skia_use_libpng = true
|
2016-08-23 14:38:09 +00:00
|
|
|
skia_use_libwebp = !is_fuchsia
|
2018-01-08 20:49:09 +00:00
|
|
|
skia_use_lua = is_skia_dev_build && !is_ios
|
2018-06-20 18:05:05 +00:00
|
|
|
skia_use_opencl = false
|
2016-11-01 15:46:10 +00:00
|
|
|
skia_use_piex = !is_win
|
2018-10-26 13:25:51 +00:00
|
|
|
skia_use_wuffs = false
|
2016-08-24 16:55:56 +00:00
|
|
|
skia_use_zlib = true
|
2017-07-05 20:49:36 +00:00
|
|
|
skia_use_metal = false
|
2019-07-10 19:51:30 +00:00
|
|
|
skia_use_dawn = false
|
2017-10-20 16:33:53 +00:00
|
|
|
skia_use_libheif = is_skia_dev_build
|
2018-09-17 17:23:28 +00:00
|
|
|
skia_use_x11 = is_linux
|
2019-02-27 15:59:11 +00:00
|
|
|
skia_use_xps = true
|
2019-07-10 19:51:30 +00:00
|
|
|
}
|
2016-09-16 14:45:52 +00:00
|
|
|
|
2019-07-10 19:51:30 +00:00
|
|
|
declare_args() {
|
2017-01-05 17:20:41 +00:00
|
|
|
skia_android_serial = ""
|
2018-10-10 19:54:53 +00:00
|
|
|
skia_enable_ccpr = true
|
2018-10-17 13:52:24 +00:00
|
|
|
skia_enable_nvpr = !skia_enable_flutter_defines
|
2016-12-28 16:19:22 +00:00
|
|
|
skia_enable_discrete_gpu = true
|
2016-12-30 18:09:03 +00:00
|
|
|
skia_enable_pdf = true
|
2019-07-10 19:51:30 +00:00
|
|
|
skia_enable_spirv_validation = is_skia_dev_build && is_debug && !skia_use_dawn
|
2018-10-18 13:47:01 +00:00
|
|
|
skia_enable_skpicture = true
|
2019-07-09 14:48:28 +00:00
|
|
|
skia_enable_sksl_interpreter = is_skia_dev_build
|
2019-07-15 16:38:12 +00:00
|
|
|
skia_enable_skvm_jit =
|
2019-07-15 16:44:52 +00:00
|
|
|
is_skia_dev_build && ((target_cpu == "x64" && (is_linux || is_mac)) ||
|
|
|
|
(target_cpu == "arm64" && is_android))
|
2017-03-03 15:55:02 +00:00
|
|
|
skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
|
2017-09-01 16:17:03 +00:00
|
|
|
skia_qt_path = getenv("QT_PATH")
|
2017-06-29 14:03:38 +00:00
|
|
|
skia_compile_processors = false
|
2018-04-18 20:46:25 +00:00
|
|
|
skia_generate_workarounds = false
|
2017-09-11 20:50:14 +00:00
|
|
|
skia_lex = false
|
2017-06-28 17:21:47 +00:00
|
|
|
|
2018-02-01 19:06:13 +00:00
|
|
|
skia_skqp_global_error_tolerance = 0
|
2018-03-27 18:10:52 +00:00
|
|
|
|
|
|
|
skia_llvm_path = ""
|
|
|
|
skia_llvm_lib = "LLVM"
|
2018-04-24 15:47:23 +00:00
|
|
|
|
|
|
|
skia_tools_require_resources = false
|
2019-06-25 19:48:47 +00:00
|
|
|
skia_include_multiframe_procs = false
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
2019-07-10 19:51:30 +00:00
|
|
|
|
|
|
|
if (skia_use_dawn) {
|
|
|
|
import("third_party/externals/dawn/scripts/dawn_features.gni")
|
|
|
|
}
|
|
|
|
|
2016-10-27 17:31:37 +00:00
|
|
|
declare_args() {
|
2017-03-20 22:09:30 +00:00
|
|
|
skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
|
2016-11-01 15:46:10 +00:00
|
|
|
skia_use_sfntly = skia_use_icu
|
2017-11-19 18:20:13 +00:00
|
|
|
skia_enable_atlas_text = is_skia_dev_build && skia_enable_gpu
|
2018-11-13 18:50:12 +00:00
|
|
|
skia_enable_fontmgr_empty = false
|
2018-12-12 15:35:13 +00:00
|
|
|
skia_enable_fontmgr_custom =
|
|
|
|
is_linux && skia_use_freetype && !skia_use_fontconfig
|
2018-11-13 18:50:12 +00:00
|
|
|
skia_enable_fontmgr_custom_empty = is_fuchsia && skia_use_freetype
|
|
|
|
skia_enable_fontmgr_android = skia_use_expat && skia_use_freetype
|
2018-12-01 01:42:00 +00:00
|
|
|
skia_enable_fontmgr_fuchsia = is_fuchsia
|
2019-03-04 18:54:02 +00:00
|
|
|
skia_enable_fontmgr_win = is_win
|
|
|
|
skia_enable_fontmgr_win_gdi = is_win
|
2016-11-01 15:46:10 +00:00
|
|
|
|
2019-03-21 12:13:54 +00:00
|
|
|
if (is_mac) {
|
|
|
|
skia_gl_standard = "gl"
|
|
|
|
} else if (is_ios) {
|
|
|
|
skia_gl_standard = "gles"
|
|
|
|
} else {
|
|
|
|
skia_gl_standard = ""
|
|
|
|
}
|
|
|
|
|
2016-10-31 17:44:49 +00:00
|
|
|
if (is_android) {
|
|
|
|
skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
|
2017-04-17 20:36:39 +00:00
|
|
|
} else if (is_fuchsia) {
|
|
|
|
skia_use_vulkan = fuchsia_use_vulkan
|
2016-10-31 17:44:49 +00:00
|
|
|
} else {
|
2019-01-15 16:26:43 +00:00
|
|
|
skia_use_vulkan = defined(skia_moltenvk_path) && skia_moltenvk_path != ""
|
2016-10-31 17:44:49 +00:00
|
|
|
}
|
2017-12-07 20:16:10 +00:00
|
|
|
|
|
|
|
if (is_ios) {
|
|
|
|
skia_ios_identity = ".*Google.*"
|
|
|
|
skia_ios_profile = "Google Development"
|
|
|
|
}
|
2016-10-27 17:31:37 +00:00
|
|
|
}
|
2016-09-30 17:41:03 +00:00
|
|
|
|
2017-10-13 17:59:38 +00:00
|
|
|
if (defined(skia_settings)) {
|
|
|
|
import(skia_settings)
|
|
|
|
}
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
# Skia public API, generally provided by :skia.
|
|
|
|
config("skia_public") {
|
2019-04-29 14:46:36 +00:00
|
|
|
include_dirs = [ "." ]
|
|
|
|
|
2016-10-11 21:49:33 +00:00
|
|
|
defines = []
|
|
|
|
if (is_component_build) {
|
|
|
|
defines += [ "SKIA_DLL" ]
|
|
|
|
}
|
2016-09-27 01:37:09 +00:00
|
|
|
if (is_fuchsia || is_linux) {
|
2019-04-24 16:42:40 +00:00
|
|
|
defines += [ "SK_R32_SHIFT=16" ]
|
2016-08-25 16:25:11 +00:00
|
|
|
}
|
2017-07-13 19:50:03 +00:00
|
|
|
if (skia_enable_flutter_defines) {
|
|
|
|
defines += flutter_defines
|
|
|
|
}
|
2016-09-20 19:28:12 +00:00
|
|
|
if (!skia_enable_gpu) {
|
|
|
|
defines += [ "SK_SUPPORT_GPU=0" ]
|
|
|
|
}
|
2017-11-19 18:20:13 +00:00
|
|
|
if (skia_enable_atlas_text) {
|
|
|
|
defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
|
|
|
|
}
|
2018-11-12 14:27:05 +00:00
|
|
|
if (is_fuchsia) {
|
|
|
|
defines += fuchsia_defines
|
|
|
|
}
|
2019-03-21 12:13:54 +00:00
|
|
|
if (skia_gl_standard == "gles") {
|
|
|
|
defines += [ "SK_ASSUME_GL_ES=1" ]
|
|
|
|
} else if (skia_gl_standard == "gl") {
|
|
|
|
defines += [ "SK_ASSUME_GL=1" ]
|
2019-03-28 16:46:40 +00:00
|
|
|
} else if (skia_gl_standard == "webgl") {
|
|
|
|
defines += [ "SK_ASSUME_WEBGL=1" ]
|
2019-03-21 12:13:54 +00:00
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Skia internal APIs, used by Skia itself and a few test tools.
|
|
|
|
config("skia_private") {
|
|
|
|
visibility = [ ":*" ]
|
|
|
|
|
2017-05-03 14:52:00 +00:00
|
|
|
defines = [ "SK_GAMMA_APPLY_TO_A8" ]
|
2018-11-15 20:54:59 +00:00
|
|
|
if (skia_use_fixed_gamma_text) {
|
2016-09-09 18:07:45 +00:00
|
|
|
defines += [
|
|
|
|
"SK_GAMMA_EXPONENT=1.4",
|
|
|
|
"SK_GAMMA_CONTRAST=0.0",
|
|
|
|
]
|
|
|
|
}
|
2019-04-24 19:04:01 +00:00
|
|
|
if (is_skia_dev_build) {
|
|
|
|
defines += [
|
|
|
|
"SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=1",
|
|
|
|
"GR_TEST_UTILS=1",
|
|
|
|
]
|
2016-09-14 18:16:49 +00:00
|
|
|
}
|
2016-09-30 17:41:03 +00:00
|
|
|
libs = []
|
|
|
|
lib_dirs = []
|
2016-12-05 14:46:02 +00:00
|
|
|
if (skia_use_angle) {
|
|
|
|
defines += [ "SK_ANGLE" ]
|
|
|
|
}
|
2018-03-27 18:10:52 +00:00
|
|
|
if (skia_llvm_path != "") {
|
|
|
|
defines += [ "SK_LLVM_AVAILABLE" ]
|
|
|
|
include_dirs += [ "$skia_llvm_path/include" ]
|
|
|
|
libs += [ skia_llvm_lib ]
|
|
|
|
lib_dirs += [ "$skia_llvm_path/lib/" ]
|
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
|
|
|
|
config("skia_library") {
|
|
|
|
visibility = [ ":*" ]
|
2019-04-29 15:45:14 +00:00
|
|
|
defines = [ "SKIA_IMPLEMENTATION=1" ]
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
skia_library_configs = [
|
|
|
|
":skia_public",
|
|
|
|
":skia_private",
|
|
|
|
":skia_library",
|
|
|
|
]
|
|
|
|
|
2016-08-25 00:32:30 +00:00
|
|
|
# Use for CPU-specific Skia code that needs particular compiler flags.
|
|
|
|
template("opts") {
|
2018-11-07 20:03:58 +00:00
|
|
|
visibility = [ ":*" ]
|
2016-08-25 00:32:30 +00:00
|
|
|
if (invoker.enabled) {
|
|
|
|
source_set(target_name) {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2016-08-25 00:32:30 +00:00
|
|
|
forward_variables_from(invoker, "*")
|
|
|
|
configs += skia_library_configs
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# If not enabled, a phony empty target that swallows all otherwise unused variables.
|
|
|
|
source_set(target_name) {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2016-08-25 00:32:30 +00:00
|
|
|
forward_variables_from(invoker,
|
|
|
|
"*",
|
|
|
|
[
|
|
|
|
"sources",
|
|
|
|
"cflags",
|
|
|
|
])
|
|
|
|
}
|
|
|
|
}
|
2016-08-17 20:57:26 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 01:28:43 +00:00
|
|
|
is_x86 = current_cpu == "x64" || current_cpu == "x86"
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
|
2016-08-25 21:50:44 +00:00
|
|
|
opts("none") {
|
|
|
|
enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.none_sources
|
2016-08-25 11:55:19 +00:00
|
|
|
cflags = []
|
|
|
|
}
|
|
|
|
|
2016-08-25 21:50:44 +00:00
|
|
|
opts("armv7") {
|
2016-08-25 11:55:19 +00:00
|
|
|
enabled = current_cpu == "arm"
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.armv7_sources + skia_opts.neon_sources
|
2016-08-25 21:50:44 +00:00
|
|
|
cflags = []
|
2016-08-25 11:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
opts("arm64") {
|
|
|
|
enabled = current_cpu == "arm64"
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.arm64_sources
|
2016-08-25 11:55:19 +00:00
|
|
|
cflags = []
|
|
|
|
}
|
|
|
|
|
|
|
|
opts("crc32") {
|
|
|
|
enabled = current_cpu == "arm64"
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.crc32_sources
|
2016-08-25 11:55:19 +00:00
|
|
|
cflags = [ "-march=armv8-a+crc" ]
|
|
|
|
}
|
|
|
|
|
2016-08-25 00:32:30 +00:00
|
|
|
opts("sse2") {
|
|
|
|
enabled = is_x86
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.sse2_sources
|
2017-07-31 15:57:21 +00:00
|
|
|
if (!is_clang && is_win) {
|
2016-10-19 17:39:13 +00:00
|
|
|
defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
|
|
|
|
} else {
|
2016-10-11 21:08:53 +00:00
|
|
|
cflags = [ "-msse2" ]
|
|
|
|
}
|
2016-08-25 00:32:30 +00:00
|
|
|
}
|
2016-08-08 16:06:27 +00:00
|
|
|
|
2016-08-25 00:32:30 +00:00
|
|
|
opts("ssse3") {
|
|
|
|
enabled = is_x86
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.ssse3_sources
|
2017-07-31 15:57:21 +00:00
|
|
|
if (!is_clang && is_win) {
|
2016-10-19 17:39:13 +00:00
|
|
|
defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
|
|
|
|
} else {
|
2016-10-11 21:08:53 +00:00
|
|
|
cflags = [ "-mssse3" ]
|
|
|
|
}
|
2016-08-25 00:32:30 +00:00
|
|
|
}
|
2016-08-08 16:06:27 +00:00
|
|
|
|
2016-08-25 00:32:30 +00:00
|
|
|
opts("sse41") {
|
|
|
|
enabled = is_x86
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.sse41_sources
|
2017-07-31 15:57:21 +00:00
|
|
|
if (!is_clang && is_win) {
|
2016-10-19 17:39:13 +00:00
|
|
|
defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
|
|
|
|
} else {
|
2016-10-11 21:08:53 +00:00
|
|
|
cflags = [ "-msse4.1" ]
|
|
|
|
}
|
2016-08-25 00:32:30 +00:00
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
|
2016-08-25 00:32:30 +00:00
|
|
|
opts("sse42") {
|
|
|
|
enabled = is_x86
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.sse42_sources
|
2017-07-31 15:57:21 +00:00
|
|
|
if (!is_clang && is_win) {
|
2016-10-19 17:39:13 +00:00
|
|
|
defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
|
|
|
|
} else {
|
2016-10-11 21:08:53 +00:00
|
|
|
cflags = [ "-msse4.2" ]
|
|
|
|
}
|
2016-08-25 00:32:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
opts("avx") {
|
|
|
|
enabled = is_x86
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_opts.avx_sources
|
2018-03-21 17:07:35 +00:00
|
|
|
if (is_win) {
|
2016-11-18 22:11:41 +00:00
|
|
|
cflags = [ "/arch:AVX" ]
|
2016-10-11 21:08:53 +00:00
|
|
|
} else {
|
|
|
|
cflags = [ "-mavx" ]
|
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
Reland "Reland "make SkJumper stages normal Skia code""
This is a reland of 78cb579f33943421afc8423a39867fcfd69fed44
This time, lowp stages are controlled by !defined(JUMPER_IS_SCALAR), not
by defined(__clang__). The two are usually the same, except when we opt
Clang builds into JUMPER_IS_SCALAR artificially.
Some Google3 builds use compilers old enough that they barf when
compiling our NEON code. It's conceivably also possible to define
JUMPER_IS_SCALAR yourself, but I don't think anyone does that.
Original change's description:
> Reland "make SkJumper stages normal Skia code"
>
> This is a reland of 22e536e3a1a09405d1c0e6f071717a726d86e8d4
>
> Now with fixed #include paths in SkRasterPipeline_opts.h,
> and -ffp-contract=fast for the :hsw target to minimize
> diffs on non-Windows Clang AVX2/AVX-512 bots.
>
> Original change's description:
> > make SkJumper stages normal Skia code
> >
> > Enough clients are using Clang now that we can say, use Clang to build
> > if you want these software pipeline stages to go fast.
> >
> > This lets us drop the offline build aspect of SkJumper stages, instead
> > building as part of Skia using the SkOpts framework.
> >
> > I think everything should work, except I've (temporarily) removed
> > AVX-512 support. I will put this back in a follow up.
> >
> > I have had to drop Windows down to __vectorcall and our narrower
> > stage calling convention that keeps the d-registers on the stack.
> > I tried forcing sysv_abi, but that crashed Clang. :/
> >
> > Added a TODO to up the same narrower stage calling convention
> > for lowp stages... we just *don't* today, for no good reason.
> >
> > Change-Id: Iaaa792ffe4deab3508d2dc5d0008c163c24b3383
> > Reviewed-on: https://skia-review.googlesource.com/110641
> > Commit-Queue: Mike Klein <mtklein@chromium.org>
> > Reviewed-by: Herb Derby <herb@google.com>
> > Reviewed-by: Florin Malita <fmalita@chromium.org>
>
> Change-Id: I44f2c03d33958e3807747e40904b6351957dd448
> Reviewed-on: https://skia-review.googlesource.com/112742
> Reviewed-by: Mike Klein <mtklein@chromium.org>
Change-Id: I3d71197d4bbb19ca4a94961a97fa2e54d5cbfb0d
Reviewed-on: https://skia-review.googlesource.com/112744
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2018-02-27 15:37:40 +00:00
|
|
|
opts("hsw") {
|
|
|
|
enabled = is_x86
|
|
|
|
sources = skia_opts.hsw_sources
|
2018-03-21 17:07:35 +00:00
|
|
|
if (is_win) {
|
Reland "Reland "make SkJumper stages normal Skia code""
This is a reland of 78cb579f33943421afc8423a39867fcfd69fed44
This time, lowp stages are controlled by !defined(JUMPER_IS_SCALAR), not
by defined(__clang__). The two are usually the same, except when we opt
Clang builds into JUMPER_IS_SCALAR artificially.
Some Google3 builds use compilers old enough that they barf when
compiling our NEON code. It's conceivably also possible to define
JUMPER_IS_SCALAR yourself, but I don't think anyone does that.
Original change's description:
> Reland "make SkJumper stages normal Skia code"
>
> This is a reland of 22e536e3a1a09405d1c0e6f071717a726d86e8d4
>
> Now with fixed #include paths in SkRasterPipeline_opts.h,
> and -ffp-contract=fast for the :hsw target to minimize
> diffs on non-Windows Clang AVX2/AVX-512 bots.
>
> Original change's description:
> > make SkJumper stages normal Skia code
> >
> > Enough clients are using Clang now that we can say, use Clang to build
> > if you want these software pipeline stages to go fast.
> >
> > This lets us drop the offline build aspect of SkJumper stages, instead
> > building as part of Skia using the SkOpts framework.
> >
> > I think everything should work, except I've (temporarily) removed
> > AVX-512 support. I will put this back in a follow up.
> >
> > I have had to drop Windows down to __vectorcall and our narrower
> > stage calling convention that keeps the d-registers on the stack.
> > I tried forcing sysv_abi, but that crashed Clang. :/
> >
> > Added a TODO to up the same narrower stage calling convention
> > for lowp stages... we just *don't* today, for no good reason.
> >
> > Change-Id: Iaaa792ffe4deab3508d2dc5d0008c163c24b3383
> > Reviewed-on: https://skia-review.googlesource.com/110641
> > Commit-Queue: Mike Klein <mtklein@chromium.org>
> > Reviewed-by: Herb Derby <herb@google.com>
> > Reviewed-by: Florin Malita <fmalita@chromium.org>
>
> Change-Id: I44f2c03d33958e3807747e40904b6351957dd448
> Reviewed-on: https://skia-review.googlesource.com/112742
> Reviewed-by: Mike Klein <mtklein@chromium.org>
Change-Id: I3d71197d4bbb19ca4a94961a97fa2e54d5cbfb0d
Reviewed-on: https://skia-review.googlesource.com/112744
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2018-02-27 15:37:40 +00:00
|
|
|
cflags = [ "/arch:AVX2" ]
|
|
|
|
} else {
|
2018-03-23 00:13:58 +00:00
|
|
|
cflags = [ "-march=haswell" ]
|
Reland "Reland "make SkJumper stages normal Skia code""
This is a reland of 78cb579f33943421afc8423a39867fcfd69fed44
This time, lowp stages are controlled by !defined(JUMPER_IS_SCALAR), not
by defined(__clang__). The two are usually the same, except when we opt
Clang builds into JUMPER_IS_SCALAR artificially.
Some Google3 builds use compilers old enough that they barf when
compiling our NEON code. It's conceivably also possible to define
JUMPER_IS_SCALAR yourself, but I don't think anyone does that.
Original change's description:
> Reland "make SkJumper stages normal Skia code"
>
> This is a reland of 22e536e3a1a09405d1c0e6f071717a726d86e8d4
>
> Now with fixed #include paths in SkRasterPipeline_opts.h,
> and -ffp-contract=fast for the :hsw target to minimize
> diffs on non-Windows Clang AVX2/AVX-512 bots.
>
> Original change's description:
> > make SkJumper stages normal Skia code
> >
> > Enough clients are using Clang now that we can say, use Clang to build
> > if you want these software pipeline stages to go fast.
> >
> > This lets us drop the offline build aspect of SkJumper stages, instead
> > building as part of Skia using the SkOpts framework.
> >
> > I think everything should work, except I've (temporarily) removed
> > AVX-512 support. I will put this back in a follow up.
> >
> > I have had to drop Windows down to __vectorcall and our narrower
> > stage calling convention that keeps the d-registers on the stack.
> > I tried forcing sysv_abi, but that crashed Clang. :/
> >
> > Added a TODO to up the same narrower stage calling convention
> > for lowp stages... we just *don't* today, for no good reason.
> >
> > Change-Id: Iaaa792ffe4deab3508d2dc5d0008c163c24b3383
> > Reviewed-on: https://skia-review.googlesource.com/110641
> > Commit-Queue: Mike Klein <mtklein@chromium.org>
> > Reviewed-by: Herb Derby <herb@google.com>
> > Reviewed-by: Florin Malita <fmalita@chromium.org>
>
> Change-Id: I44f2c03d33958e3807747e40904b6351957dd448
> Reviewed-on: https://skia-review.googlesource.com/112742
> Reviewed-by: Mike Klein <mtklein@chromium.org>
Change-Id: I3d71197d4bbb19ca4a94961a97fa2e54d5cbfb0d
Reviewed-on: https://skia-review.googlesource.com/112744
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2018-02-27 15:37:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
# Any feature of Skia that requires third-party code should be optional and use this template.
|
2016-08-23 20:56:37 +00:00
|
|
|
template("optional") {
|
2018-11-07 20:03:58 +00:00
|
|
|
visibility = [ ":*" ]
|
2016-08-23 20:56:37 +00:00
|
|
|
if (invoker.enabled) {
|
|
|
|
config(target_name + "_public") {
|
2016-08-31 11:58:19 +00:00
|
|
|
if (defined(invoker.public_defines)) {
|
|
|
|
defines = invoker.public_defines
|
|
|
|
}
|
2018-05-03 15:30:29 +00:00
|
|
|
if (defined(invoker.public_configs)) {
|
|
|
|
configs = invoker.public_configs
|
|
|
|
}
|
2016-08-23 20:56:37 +00:00
|
|
|
}
|
|
|
|
source_set(target_name) {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2016-08-31 11:58:19 +00:00
|
|
|
forward_variables_from(invoker,
|
|
|
|
"*",
|
|
|
|
[
|
|
|
|
"public_defines",
|
|
|
|
"sources_when_disabled",
|
2016-10-31 16:02:57 +00:00
|
|
|
"configs_to_remove",
|
2016-08-31 11:58:19 +00:00
|
|
|
])
|
2016-08-23 20:56:37 +00:00
|
|
|
all_dependent_configs = [ ":" + target_name + "_public" ]
|
2016-08-25 00:32:30 +00:00
|
|
|
configs += skia_library_configs
|
2016-10-31 16:02:57 +00:00
|
|
|
if (defined(invoker.configs_to_remove)) {
|
|
|
|
configs -= invoker.configs_to_remove
|
|
|
|
}
|
2016-08-23 20:56:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
source_set(target_name) {
|
|
|
|
forward_variables_from(invoker,
|
|
|
|
"*",
|
|
|
|
[
|
|
|
|
"public_defines",
|
2018-05-22 17:25:15 +00:00
|
|
|
"public_deps",
|
2016-08-23 20:56:37 +00:00
|
|
|
"deps",
|
2016-09-14 13:12:09 +00:00
|
|
|
"libs",
|
2016-08-23 20:56:37 +00:00
|
|
|
"sources",
|
2016-08-31 11:58:19 +00:00
|
|
|
"sources_when_disabled",
|
2016-10-31 16:02:57 +00:00
|
|
|
"configs_to_remove",
|
2016-08-23 20:56:37 +00:00
|
|
|
])
|
2016-08-31 11:58:19 +00:00
|
|
|
if (defined(invoker.sources_when_disabled)) {
|
|
|
|
sources = invoker.sources_when_disabled
|
|
|
|
}
|
|
|
|
configs += skia_library_configs
|
2016-08-23 20:56:37 +00:00
|
|
|
}
|
2016-08-23 14:38:09 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-23 20:56:37 +00:00
|
|
|
|
2016-08-29 22:22:10 +00:00
|
|
|
optional("fontmgr_android") {
|
2018-11-13 18:50:12 +00:00
|
|
|
enabled = skia_enable_fontmgr_android
|
2016-08-29 22:22:10 +00:00
|
|
|
|
|
|
|
deps = [
|
2017-02-24 16:15:26 +00:00
|
|
|
":typeface_freetype",
|
2016-08-29 22:22:10 +00:00
|
|
|
"//third_party/expat",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_android.cpp",
|
|
|
|
"src/ports/SkFontMgr_android_factory.cpp",
|
|
|
|
"src/ports/SkFontMgr_android_parser.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-09-07 14:52:55 +00:00
|
|
|
optional("fontmgr_custom") {
|
2018-11-13 18:50:12 +00:00
|
|
|
enabled = skia_enable_fontmgr_custom
|
2016-09-07 14:52:55 +00:00
|
|
|
|
|
|
|
deps = [
|
2017-02-24 16:15:26 +00:00
|
|
|
":typeface_freetype",
|
2016-09-07 14:52:55 +00:00
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_custom.cpp",
|
2017-02-08 22:29:33 +00:00
|
|
|
"src/ports/SkFontMgr_custom.h",
|
|
|
|
"src/ports/SkFontMgr_custom_directory.cpp",
|
2016-09-07 14:52:55 +00:00
|
|
|
"src/ports/SkFontMgr_custom_directory_factory.cpp",
|
2017-02-08 22:29:33 +00:00
|
|
|
"src/ports/SkFontMgr_custom_embedded.cpp",
|
|
|
|
"src/ports/SkFontMgr_custom_empty.cpp",
|
2016-09-07 14:52:55 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-03-04 18:54:02 +00:00
|
|
|
optional("fontmgr_custom_empty") {
|
|
|
|
enabled = skia_enable_fontmgr_custom_empty
|
2018-12-12 15:35:13 +00:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
":typeface_freetype",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_custom.cpp",
|
2019-03-04 18:54:02 +00:00
|
|
|
"src/ports/SkFontMgr_custom_empty.cpp",
|
|
|
|
"src/ports/SkFontMgr_custom_empty_factory.cpp",
|
2018-12-01 01:42:00 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-01-30 16:35:47 +00:00
|
|
|
optional("fontmgr_empty") {
|
|
|
|
enabled = skia_enable_fontmgr_empty
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_empty_factory.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-08-29 20:26:14 +00:00
|
|
|
optional("fontmgr_fontconfig") {
|
|
|
|
enabled = skia_use_freetype && skia_use_fontconfig
|
|
|
|
|
|
|
|
deps = [
|
2017-02-24 16:15:26 +00:00
|
|
|
":typeface_freetype",
|
2016-08-29 20:26:14 +00:00
|
|
|
"//third_party:fontconfig",
|
|
|
|
]
|
|
|
|
sources = [
|
2016-09-19 19:13:16 +00:00
|
|
|
"src/ports/SkFontConfigInterface.cpp",
|
2016-08-29 20:26:14 +00:00
|
|
|
"src/ports/SkFontConfigInterface_direct.cpp",
|
|
|
|
"src/ports/SkFontConfigInterface_direct_factory.cpp",
|
|
|
|
"src/ports/SkFontMgr_FontConfigInterface.cpp",
|
|
|
|
"src/ports/SkFontMgr_fontconfig.cpp",
|
|
|
|
"src/ports/SkFontMgr_fontconfig_factory.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-03-04 18:54:02 +00:00
|
|
|
optional("fontmgr_fuchsia") {
|
|
|
|
enabled = skia_enable_fontmgr_fuchsia
|
|
|
|
|
2019-05-06 23:44:06 +00:00
|
|
|
deps = []
|
|
|
|
|
|
|
|
if (is_fuchsia && using_fuchsia_sdk) {
|
|
|
|
deps += [ "$fuchsia_sdk_root/fidl:fuchsia.fonts" ]
|
|
|
|
} else {
|
|
|
|
deps += [ "//sdk/fidl/fuchsia.fonts" ]
|
|
|
|
}
|
2019-03-04 18:54:02 +00:00
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_fuchsia.cpp",
|
|
|
|
"src/ports/SkFontMgr_fuchsia.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
optional("fontmgr_wasm") {
|
2019-04-16 17:31:25 +00:00
|
|
|
enabled = !skia_enable_fontmgr_empty && target_cpu == "wasm"
|
2016-09-12 22:15:44 +00:00
|
|
|
|
|
|
|
deps = [
|
2017-02-24 16:15:26 +00:00
|
|
|
":typeface_freetype",
|
2016-09-12 22:15:44 +00:00
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontMgr_custom.cpp",
|
2019-03-04 18:54:02 +00:00
|
|
|
"src/ports/SkFontMgr_custom.h",
|
|
|
|
"src/ports/SkFontMgr_custom_embedded.cpp",
|
|
|
|
"src/ports/SkFontMgr_custom_embedded_factory.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
optional("fontmgr_win") {
|
|
|
|
enabled = skia_enable_fontmgr_win
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/fonts/SkFontMgr_indirect.cpp",
|
|
|
|
"src/ports/SkFontMgr_win_dw.cpp",
|
|
|
|
"src/ports/SkFontMgr_win_dw_factory.cpp",
|
|
|
|
"src/ports/SkScalerContext_win_dw.cpp",
|
|
|
|
"src/ports/SkTypeface_win_dw.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
optional("fontmgr_win_gdi") {
|
|
|
|
enabled = skia_enable_fontmgr_win_gdi
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontHost_win.cpp",
|
2016-09-12 22:15:44 +00:00
|
|
|
]
|
2019-03-04 18:54:02 +00:00
|
|
|
libs = [ "Gdi32.lib" ]
|
2016-09-12 22:15:44 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 20:50:14 +00:00
|
|
|
if (skia_lex) {
|
2017-09-07 13:39:50 +00:00
|
|
|
executable("sksllex") {
|
|
|
|
sources = [
|
|
|
|
"src/sksl/lex/Main.cpp",
|
|
|
|
"src/sksl/lex/NFA.cpp",
|
|
|
|
"src/sksl/lex/RegexNode.cpp",
|
|
|
|
"src/sksl/lex/RegexParser.cpp",
|
|
|
|
]
|
2019-04-23 17:05:21 +00:00
|
|
|
include_dirs = [ "." ]
|
2017-09-07 13:39:50 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 20:50:14 +00:00
|
|
|
action("run_sksllex") {
|
|
|
|
script = "gn/run_sksllex.py"
|
2017-10-06 18:22:22 +00:00
|
|
|
deps = [
|
|
|
|
":sksllex(//gn/toolchain:$host_toolchain)",
|
|
|
|
]
|
2017-09-11 20:50:14 +00:00
|
|
|
sources = [
|
|
|
|
"src/sksl/lex/sksl.lex",
|
|
|
|
]
|
|
|
|
|
|
|
|
# GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
|
|
|
|
# path that starts with target_out_dir and then uses ".." to back up into the src dir.
|
|
|
|
outputs = [
|
|
|
|
"$target_out_dir/" +
|
|
|
|
rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
|
|
|
|
# the script also modifies the corresponding .cpp file, but if we tell GN that it gets
|
|
|
|
# confused due to the same file being named by two different paths
|
|
|
|
]
|
|
|
|
sksllex_path = "$root_out_dir/"
|
|
|
|
sksllex_path += "sksllex"
|
|
|
|
if (host_os == "win") {
|
|
|
|
sksllex_path += ".exe"
|
|
|
|
}
|
|
|
|
args = [
|
|
|
|
rebase_path(sksllex_path),
|
|
|
|
rebase_path("bin/clang-format"),
|
|
|
|
rebase_path("src"),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
group("run_sksllex") {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skia_compile_processors) {
|
2017-06-29 14:03:38 +00:00
|
|
|
executable("skslc") {
|
|
|
|
defines = [ "SKSL_STANDALONE" ]
|
|
|
|
sources = [
|
|
|
|
"src/sksl/SkSLMain.cpp",
|
|
|
|
]
|
|
|
|
sources += skia_sksl_sources
|
2019-06-18 14:14:20 +00:00
|
|
|
sources += skia_sksl_gpu_sources
|
2019-04-23 17:05:21 +00:00
|
|
|
include_dirs = [ "." ]
|
2017-06-29 14:03:38 +00:00
|
|
|
deps = [
|
2017-11-10 20:34:03 +00:00
|
|
|
":run_sksllex",
|
2017-06-29 14:03:38 +00:00
|
|
|
"//third_party/spirv-tools",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
skia_gpu_processor_outputs = []
|
|
|
|
foreach(src, skia_gpu_processor_sources) {
|
|
|
|
dir = get_path_info(src, "dir")
|
|
|
|
name = get_path_info(src, "name")
|
|
|
|
|
|
|
|
# GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
|
|
|
|
# path that starts with target_out_dir and then uses ".." to back up into the src dir.
|
|
|
|
skia_gpu_processor_outputs += [
|
2019-07-18 15:23:16 +00:00
|
|
|
"$target_out_dir/" +
|
|
|
|
rebase_path("$dir/generated/$name.h", target_out_dir),
|
2017-06-29 14:03:38 +00:00
|
|
|
# the script also modifies the corresponding .cpp file, but if we tell GN that it gets
|
|
|
|
# confused due to the same file being named by two different paths
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-11-10 20:34:03 +00:00
|
|
|
action("create_sksl_enums") {
|
|
|
|
script = "gn/create_sksl_enums.py"
|
|
|
|
sources = [
|
|
|
|
"include/private/GrSharedEnums.h",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"$target_out_dir/" +
|
2018-01-24 22:32:17 +00:00
|
|
|
rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
|
2017-11-10 20:34:03 +00:00
|
|
|
]
|
|
|
|
args = [
|
|
|
|
rebase_path(sources[0]),
|
|
|
|
rebase_path(outputs[0]),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-06-29 14:03:38 +00:00
|
|
|
action("compile_processors") {
|
|
|
|
script = "gn/compile_processors.py"
|
|
|
|
deps = [
|
2017-11-10 20:34:03 +00:00
|
|
|
":create_sksl_enums",
|
2017-06-29 14:03:38 +00:00
|
|
|
":skslc(//gn/toolchain:$host_toolchain)",
|
|
|
|
]
|
|
|
|
sources = skia_gpu_processor_sources
|
|
|
|
outputs = skia_gpu_processor_outputs
|
|
|
|
skslc_path = "$root_out_dir/"
|
|
|
|
if (host_toolchain != default_toolchain_name) {
|
|
|
|
skslc_path += "$host_toolchain/"
|
|
|
|
}
|
|
|
|
skslc_path += "skslc"
|
|
|
|
if (host_os == "win") {
|
|
|
|
skslc_path += ".exe"
|
|
|
|
}
|
2017-07-27 20:02:37 +00:00
|
|
|
args = [
|
|
|
|
rebase_path(skslc_path),
|
2017-07-28 14:00:51 +00:00
|
|
|
rebase_path("bin/clang-format"),
|
2017-07-27 20:02:37 +00:00
|
|
|
]
|
2017-06-29 14:03:38 +00:00
|
|
|
args += rebase_path(skia_gpu_processor_sources)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
skia_gpu_processor_outputs = []
|
|
|
|
group("compile_processors") {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 19:59:30 +00:00
|
|
|
optional("gpu") {
|
2016-09-20 19:28:12 +00:00
|
|
|
enabled = skia_enable_gpu
|
2017-06-29 14:03:38 +00:00
|
|
|
deps = [
|
|
|
|
":compile_processors",
|
2017-09-11 20:50:14 +00:00
|
|
|
":run_sksllex",
|
2017-06-29 14:03:38 +00:00
|
|
|
]
|
2018-04-18 20:46:25 +00:00
|
|
|
if (skia_generate_workarounds) {
|
|
|
|
deps += [ ":workaround_list" ]
|
|
|
|
}
|
2019-05-17 18:19:44 +00:00
|
|
|
public_defines = [ "SK_GL" ]
|
2018-05-03 15:30:29 +00:00
|
|
|
public_configs = []
|
2018-05-22 17:25:15 +00:00
|
|
|
public_deps = []
|
2016-09-20 22:11:46 +00:00
|
|
|
|
2019-06-18 14:14:20 +00:00
|
|
|
sources =
|
|
|
|
skia_gpu_sources + skia_sksl_gpu_sources + skia_gpu_processor_outputs
|
2018-10-10 19:54:53 +00:00
|
|
|
if (!skia_enable_ccpr) {
|
|
|
|
sources -= skia_ccpr_sources
|
|
|
|
sources += [ "src/gpu/ccpr/GrCoverageCountingPathRenderer_none.cpp" ]
|
|
|
|
}
|
2018-10-15 13:35:54 +00:00
|
|
|
if (!skia_enable_nvpr) {
|
|
|
|
sources -= skia_nvpr_sources
|
|
|
|
sources += [ "src/gpu/GrPathRendering_none.cpp" ]
|
|
|
|
}
|
2016-09-20 19:28:12 +00:00
|
|
|
|
|
|
|
# These paths need to be absolute to match the ones produced by shared_sources.gni.
|
2017-12-11 15:06:31 +00:00
|
|
|
sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
|
2016-09-20 19:28:12 +00:00
|
|
|
"abspath")
|
2016-10-13 21:18:04 +00:00
|
|
|
libs = []
|
2016-09-20 19:28:12 +00:00
|
|
|
if (is_android) {
|
2018-03-14 19:16:56 +00:00
|
|
|
sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
|
2017-06-27 19:37:25 +00:00
|
|
|
|
|
|
|
# this lib is required to link against AHardwareBuffer
|
|
|
|
if (defined(ndk_api) && ndk_api >= 26) {
|
|
|
|
libs += [ "android" ]
|
|
|
|
}
|
2017-03-29 15:19:01 +00:00
|
|
|
} else if (skia_use_egl) {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
|
2017-03-29 15:19:01 +00:00
|
|
|
libs += [ "EGL" ]
|
2018-09-17 17:23:28 +00:00
|
|
|
} else if (is_linux && skia_use_x11) {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
|
2018-06-20 15:06:39 +00:00
|
|
|
libs += [ "GL" ]
|
2016-09-20 19:28:12 +00:00
|
|
|
} else if (is_mac) {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
|
2016-11-23 19:43:56 +00:00
|
|
|
} else if (is_ios) {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
|
2016-10-13 21:18:04 +00:00
|
|
|
} else if (is_win) {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
|
2018-12-10 15:27:26 +00:00
|
|
|
if (target_cpu != "arm64") {
|
|
|
|
libs += [ "OpenGL32.lib" ]
|
|
|
|
}
|
2016-09-20 19:28:12 +00:00
|
|
|
} else {
|
2017-12-11 15:06:31 +00:00
|
|
|
sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
|
2016-09-20 19:28:12 +00:00
|
|
|
}
|
2016-09-20 22:11:46 +00:00
|
|
|
|
|
|
|
if (skia_use_vulkan) {
|
2018-08-01 13:23:57 +00:00
|
|
|
public_defines += [ "SK_VULKAN" ]
|
2018-05-29 14:46:51 +00:00
|
|
|
deps += [ "third_party/vulkanmemoryallocator" ]
|
2016-09-20 22:11:46 +00:00
|
|
|
sources += skia_vk_sources
|
2016-09-21 14:36:14 +00:00
|
|
|
if (skia_enable_vulkan_debug_layers) {
|
|
|
|
public_defines += [ "SK_ENABLE_VK_LAYERS" ]
|
|
|
|
}
|
2018-12-13 18:20:07 +00:00
|
|
|
if (is_fuchsia) {
|
2019-05-06 23:44:06 +00:00
|
|
|
if (using_fuchsia_sdk) {
|
|
|
|
public_deps += [ "$fuchsia_sdk_root/pkg:vulkan" ]
|
|
|
|
} else {
|
2019-07-09 14:48:28 +00:00
|
|
|
public_deps += [ "//src/graphics/lib/vulkan" ]
|
2019-05-06 23:44:06 +00:00
|
|
|
}
|
2018-12-13 18:20:07 +00:00
|
|
|
}
|
2016-09-20 22:11:46 +00:00
|
|
|
}
|
2018-05-22 17:25:15 +00:00
|
|
|
|
2019-07-10 19:51:30 +00:00
|
|
|
if (skia_use_dawn) {
|
|
|
|
public_defines += [ "SK_DAWN" ]
|
2019-07-18 15:43:45 +00:00
|
|
|
sources += skia_dawn_sources
|
2019-07-10 19:51:30 +00:00
|
|
|
public_deps += [
|
|
|
|
"//third_party/dawn:dawn_headers",
|
|
|
|
"//third_party/dawn:libdawn",
|
|
|
|
"//third_party/dawn:libdawn_native_sources",
|
|
|
|
]
|
|
|
|
if (dawn_enable_d3d12) {
|
|
|
|
libs += [
|
|
|
|
"d3d12.lib",
|
|
|
|
"dxgi.lib",
|
|
|
|
"d3dcompiler.lib",
|
|
|
|
]
|
|
|
|
} else if (dawn_enable_metal) {
|
|
|
|
libs += [ "Metal.framework" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-12 20:21:09 +00:00
|
|
|
cflags_objcc = []
|
2017-07-05 20:49:36 +00:00
|
|
|
if (skia_use_metal) {
|
|
|
|
public_defines += [ "SK_METAL" ]
|
|
|
|
sources += skia_metal_sources
|
|
|
|
libs += [ "Metal.framework" ]
|
2018-08-08 18:41:19 +00:00
|
|
|
libs += [ "Foundation.framework" ]
|
2017-07-12 20:21:09 +00:00
|
|
|
cflags_objcc += [ "-fobjc-arc" ]
|
2017-07-05 20:49:36 +00:00
|
|
|
}
|
2017-11-19 18:20:13 +00:00
|
|
|
|
|
|
|
if (skia_enable_atlas_text) {
|
|
|
|
sources += skia_atlas_text_sources
|
|
|
|
}
|
2018-10-04 16:52:50 +00:00
|
|
|
|
|
|
|
if (is_debug) {
|
|
|
|
public_defines += [ "SK_ENABLE_DUMP_GPU" ]
|
|
|
|
}
|
2016-09-20 19:28:12 +00:00
|
|
|
}
|
|
|
|
|
2019-01-29 14:29:57 +00:00
|
|
|
optional("gif") {
|
|
|
|
enabled = !skia_use_wuffs
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkGifCodec.cpp",
|
|
|
|
"third_party/gif/SkGifImageReader.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-08-17 19:13:20 +00:00
|
|
|
optional("heif") {
|
|
|
|
enabled = skia_use_libheif
|
|
|
|
public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
|
|
|
|
|
|
|
|
deps = []
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkHeifCodec.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-08-24 16:55:56 +00:00
|
|
|
optional("jpeg") {
|
|
|
|
enabled = skia_use_libjpeg_turbo
|
|
|
|
public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/libjpeg-turbo:libjpeg",
|
|
|
|
]
|
2018-06-05 19:22:54 +00:00
|
|
|
public = [
|
|
|
|
"include/encode/SkJpegEncoder.h",
|
|
|
|
]
|
2016-08-24 16:55:56 +00:00
|
|
|
sources = [
|
|
|
|
"src/codec/SkJpegCodec.cpp",
|
|
|
|
"src/codec/SkJpegDecoderMgr.cpp",
|
|
|
|
"src/codec/SkJpegUtility.cpp",
|
|
|
|
"src/images/SkJPEGWriteUtility.cpp",
|
2017-05-05 18:02:13 +00:00
|
|
|
"src/images/SkJpegEncoder.cpp",
|
2016-08-24 16:55:56 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
optional("pdf") {
|
2016-12-30 18:09:03 +00:00
|
|
|
enabled = skia_use_zlib && skia_enable_pdf
|
|
|
|
public_defines = [ "SK_SUPPORT_PDF" ]
|
2016-08-24 16:55:56 +00:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/zlib",
|
|
|
|
]
|
2018-04-05 20:58:41 +00:00
|
|
|
if (skia_use_libjpeg_turbo) {
|
2018-04-18 20:46:25 +00:00
|
|
|
deps += [ ":jpeg" ]
|
2018-04-05 20:58:41 +00:00
|
|
|
}
|
2016-09-01 21:24:39 +00:00
|
|
|
sources = skia_pdf_sources
|
2016-08-31 11:58:19 +00:00
|
|
|
sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
|
2019-02-20 16:25:45 +00:00
|
|
|
if (skia_use_icu && skia_use_harfbuzz && skia_pdf_subset_harfbuzz) {
|
|
|
|
deps += [ "//third_party/harfbuzz" ]
|
|
|
|
defines = [ "SK_PDF_USE_HARFBUZZ_SUBSET" ]
|
|
|
|
} else if (skia_use_icu && skia_use_sfntly) {
|
2016-08-24 16:55:56 +00:00
|
|
|
deps += [ "//third_party/sfntly" ]
|
2019-02-04 20:36:31 +00:00
|
|
|
defines = [ "SK_PDF_USE_SFNTLY" ]
|
2016-08-24 16:55:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
optional("png") {
|
|
|
|
enabled = skia_use_libpng
|
|
|
|
public_defines = [ "SK_HAS_PNG_LIBRARY" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/libpng",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkIcoCodec.cpp",
|
|
|
|
"src/codec/SkPngCodec.cpp",
|
2017-05-05 18:02:13 +00:00
|
|
|
"src/images/SkPngEncoder.cpp",
|
2016-08-24 16:55:56 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-10-31 16:02:57 +00:00
|
|
|
optional("raw") {
|
2016-11-01 15:46:10 +00:00
|
|
|
enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
|
2016-10-31 16:02:57 +00:00
|
|
|
public_defines = [ "SK_CODEC_DECODES_RAW" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/dng_sdk",
|
|
|
|
"//third_party/libjpeg-turbo:libjpeg",
|
|
|
|
"//third_party/piex",
|
|
|
|
]
|
|
|
|
|
|
|
|
# SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
|
|
|
|
# Skia.
|
|
|
|
configs_to_remove = [ "//gn:no_exceptions" ]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkRawCodec.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-05-15 14:46:58 +00:00
|
|
|
import("third_party/skcms/skcms.gni")
|
2018-05-30 16:57:45 +00:00
|
|
|
source_set("skcms") {
|
2018-05-15 14:46:58 +00:00
|
|
|
cflags = []
|
|
|
|
if (!is_win || is_clang) {
|
|
|
|
cflags += [
|
|
|
|
"-w",
|
|
|
|
"-std=c11",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
public = [
|
2019-04-29 14:28:22 +00:00
|
|
|
"include/third_party/skcms/skcms.h",
|
2018-05-15 14:46:58 +00:00
|
|
|
]
|
2019-04-29 14:28:22 +00:00
|
|
|
include_dirs = [ "include/third_party/skcms" ]
|
2018-05-15 14:46:58 +00:00
|
|
|
sources = rebase_path(skcms_sources, ".", "third_party/skcms")
|
|
|
|
}
|
|
|
|
|
2016-08-29 20:26:14 +00:00
|
|
|
optional("typeface_freetype") {
|
|
|
|
enabled = skia_use_freetype
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/freetype2",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/ports/SkFontHost_FreeType.cpp",
|
|
|
|
"src/ports/SkFontHost_FreeType_common.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:56:37 +00:00
|
|
|
optional("webp") {
|
|
|
|
enabled = skia_use_libwebp
|
|
|
|
public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/libwebp",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkWebpCodec.cpp",
|
2017-05-05 18:02:13 +00:00
|
|
|
"src/images/SkWebpEncoder.cpp",
|
2016-08-23 20:56:37 +00:00
|
|
|
]
|
|
|
|
}
|
2016-08-23 14:38:09 +00:00
|
|
|
|
2018-10-26 13:25:51 +00:00
|
|
|
optional("wuffs") {
|
|
|
|
enabled = skia_use_wuffs
|
|
|
|
public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/wuffs",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"src/codec/SkWuffsCodec.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-08-24 16:55:56 +00:00
|
|
|
optional("xml") {
|
|
|
|
enabled = skia_use_expat
|
2016-11-08 16:07:52 +00:00
|
|
|
public_defines = [ "SK_XML" ]
|
2016-08-24 16:55:56 +00:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
"//third_party/expat",
|
|
|
|
]
|
|
|
|
sources = [
|
2017-02-09 21:38:15 +00:00
|
|
|
"src/svg/SkSVGCanvas.cpp",
|
|
|
|
"src/svg/SkSVGDevice.cpp",
|
2016-08-24 16:55:56 +00:00
|
|
|
"src/xml/SkDOM.cpp",
|
|
|
|
"src/xml/SkXMLParser.cpp",
|
|
|
|
"src/xml/SkXMLWriter.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-07-09 14:48:28 +00:00
|
|
|
optional("sksl_interpreter") {
|
|
|
|
enabled = skia_enable_sksl_interpreter
|
|
|
|
public_defines = [ "SK_ENABLE_SKSL_INTERPRETER" ]
|
|
|
|
}
|
|
|
|
|
2019-06-06 16:42:02 +00:00
|
|
|
optional("skvm_jit") {
|
2019-06-21 21:34:06 +00:00
|
|
|
enabled = skia_enable_skvm_jit
|
2019-06-06 16:42:02 +00:00
|
|
|
public_defines = [ "SKVM_JIT" ]
|
|
|
|
}
|
|
|
|
|
2018-04-18 20:46:25 +00:00
|
|
|
if (skia_enable_gpu && skia_generate_workarounds) {
|
|
|
|
action("workaround_list") {
|
|
|
|
script = "tools/build_workaround_header.py"
|
|
|
|
|
|
|
|
inputs = [
|
|
|
|
"src/gpu/gpu_workaround_list.txt",
|
|
|
|
]
|
|
|
|
|
|
|
|
# see comments in skia_compile_processors about out dir path shenanigans.
|
|
|
|
output_file =
|
2018-05-14 21:02:03 +00:00
|
|
|
rebase_path("include/gpu/GrDriverBugWorkaroundsAutogen.h", root_out_dir)
|
2018-04-18 20:46:25 +00:00
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"$root_out_dir/$output_file",
|
|
|
|
]
|
|
|
|
args = [
|
|
|
|
"--output-file",
|
|
|
|
"$output_file",
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach(file, inputs) {
|
|
|
|
args += [ rebase_path(file, root_build_dir) ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
component("skia") {
|
|
|
|
public_configs = [ ":skia_public" ]
|
|
|
|
configs += skia_library_configs
|
|
|
|
|
2018-11-07 21:17:34 +00:00
|
|
|
public_deps = [
|
2019-02-15 19:59:30 +00:00
|
|
|
":gpu",
|
2018-11-07 21:17:34 +00:00
|
|
|
":pdf",
|
|
|
|
":skcms",
|
|
|
|
]
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
deps = [
|
2016-08-25 11:55:19 +00:00
|
|
|
":arm64",
|
|
|
|
":armv7",
|
2016-08-25 00:32:30 +00:00
|
|
|
":avx",
|
2018-11-08 12:08:05 +00:00
|
|
|
":compile_processors",
|
2016-08-25 11:55:19 +00:00
|
|
|
":crc32",
|
2016-08-29 22:22:10 +00:00
|
|
|
":fontmgr_android",
|
2016-09-07 14:52:55 +00:00
|
|
|
":fontmgr_custom",
|
2018-11-13 18:50:12 +00:00
|
|
|
":fontmgr_custom_empty",
|
2018-01-30 16:35:47 +00:00
|
|
|
":fontmgr_empty",
|
2016-08-29 20:26:14 +00:00
|
|
|
":fontmgr_fontconfig",
|
2018-12-01 01:42:00 +00:00
|
|
|
":fontmgr_fuchsia",
|
2018-12-12 15:35:13 +00:00
|
|
|
":fontmgr_wasm",
|
2019-03-04 18:54:02 +00:00
|
|
|
":fontmgr_win",
|
|
|
|
":fontmgr_win_gdi",
|
2019-01-29 14:29:57 +00:00
|
|
|
":gif",
|
2017-08-17 19:13:20 +00:00
|
|
|
":heif",
|
Reland "Reland "make SkJumper stages normal Skia code""
This is a reland of 78cb579f33943421afc8423a39867fcfd69fed44
This time, lowp stages are controlled by !defined(JUMPER_IS_SCALAR), not
by defined(__clang__). The two are usually the same, except when we opt
Clang builds into JUMPER_IS_SCALAR artificially.
Some Google3 builds use compilers old enough that they barf when
compiling our NEON code. It's conceivably also possible to define
JUMPER_IS_SCALAR yourself, but I don't think anyone does that.
Original change's description:
> Reland "make SkJumper stages normal Skia code"
>
> This is a reland of 22e536e3a1a09405d1c0e6f071717a726d86e8d4
>
> Now with fixed #include paths in SkRasterPipeline_opts.h,
> and -ffp-contract=fast for the :hsw target to minimize
> diffs on non-Windows Clang AVX2/AVX-512 bots.
>
> Original change's description:
> > make SkJumper stages normal Skia code
> >
> > Enough clients are using Clang now that we can say, use Clang to build
> > if you want these software pipeline stages to go fast.
> >
> > This lets us drop the offline build aspect of SkJumper stages, instead
> > building as part of Skia using the SkOpts framework.
> >
> > I think everything should work, except I've (temporarily) removed
> > AVX-512 support. I will put this back in a follow up.
> >
> > I have had to drop Windows down to __vectorcall and our narrower
> > stage calling convention that keeps the d-registers on the stack.
> > I tried forcing sysv_abi, but that crashed Clang. :/
> >
> > Added a TODO to up the same narrower stage calling convention
> > for lowp stages... we just *don't* today, for no good reason.
> >
> > Change-Id: Iaaa792ffe4deab3508d2dc5d0008c163c24b3383
> > Reviewed-on: https://skia-review.googlesource.com/110641
> > Commit-Queue: Mike Klein <mtklein@chromium.org>
> > Reviewed-by: Herb Derby <herb@google.com>
> > Reviewed-by: Florin Malita <fmalita@chromium.org>
>
> Change-Id: I44f2c03d33958e3807747e40904b6351957dd448
> Reviewed-on: https://skia-review.googlesource.com/112742
> Reviewed-by: Mike Klein <mtklein@chromium.org>
Change-Id: I3d71197d4bbb19ca4a94961a97fa2e54d5cbfb0d
Reviewed-on: https://skia-review.googlesource.com/112744
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2018-02-27 15:37:40 +00:00
|
|
|
":hsw",
|
2016-08-24 16:55:56 +00:00
|
|
|
":jpeg",
|
2016-08-25 00:32:30 +00:00
|
|
|
":none",
|
2016-08-24 16:55:56 +00:00
|
|
|
":png",
|
2016-10-31 16:02:57 +00:00
|
|
|
":raw",
|
2019-07-09 14:48:28 +00:00
|
|
|
":sksl_interpreter",
|
2019-06-06 16:42:02 +00:00
|
|
|
":skvm_jit",
|
2016-08-25 00:32:30 +00:00
|
|
|
":sse2",
|
|
|
|
":sse41",
|
|
|
|
":sse42",
|
|
|
|
":ssse3",
|
2016-08-23 14:38:09 +00:00
|
|
|
":webp",
|
2018-10-26 13:25:51 +00:00
|
|
|
":wuffs",
|
2016-08-24 16:55:56 +00:00
|
|
|
":xml",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
]
|
|
|
|
|
2016-11-16 23:04:12 +00:00
|
|
|
# This file (and all GN files in Skia) are designed to work with an
|
|
|
|
# empty sources assignment filter; we handle all that explicitly.
|
|
|
|
# We clear the filter here for clients who may have set up a global filter.
|
|
|
|
set_sources_assignment_filter([])
|
|
|
|
|
2019-02-26 16:54:25 +00:00
|
|
|
public = skia_core_public
|
|
|
|
public += skia_utils_public
|
|
|
|
public += skia_effects_public
|
|
|
|
public += skia_effects_imagefilter_public
|
|
|
|
public += skia_xps_public
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
sources = []
|
2016-09-01 21:24:39 +00:00
|
|
|
sources += skia_core_sources
|
|
|
|
sources += skia_utils_sources
|
2019-02-27 15:59:11 +00:00
|
|
|
if (skia_use_xps) {
|
|
|
|
sources += skia_xps_sources
|
|
|
|
}
|
2018-11-08 12:08:05 +00:00
|
|
|
sources += skia_effects_sources
|
|
|
|
sources += skia_effects_imagefilter_sources
|
2019-06-18 14:14:20 +00:00
|
|
|
sources += skia_sksl_sources
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
sources += [
|
2017-08-02 19:36:24 +00:00
|
|
|
"src/android/SkAndroidFrameworkUtils.cpp",
|
2018-01-14 19:46:51 +00:00
|
|
|
"src/android/SkAnimatedImage.cpp",
|
2016-07-27 20:55:26 +00:00
|
|
|
"src/android/SkBitmapRegionCodec.cpp",
|
|
|
|
"src/android/SkBitmapRegionDecoder.cpp",
|
|
|
|
"src/codec/SkAndroidCodec.cpp",
|
2018-11-08 23:10:31 +00:00
|
|
|
"src/codec/SkAndroidCodecAdapter.cpp",
|
2017-06-01 17:42:28 +00:00
|
|
|
"src/codec/SkBmpBaseCodec.cpp",
|
2016-07-26 20:55:45 +00:00
|
|
|
"src/codec/SkBmpCodec.cpp",
|
|
|
|
"src/codec/SkBmpMaskCodec.cpp",
|
|
|
|
"src/codec/SkBmpRLECodec.cpp",
|
|
|
|
"src/codec/SkBmpStandardCodec.cpp",
|
|
|
|
"src/codec/SkCodec.cpp",
|
|
|
|
"src/codec/SkCodecImageGenerator.cpp",
|
2018-05-30 19:33:46 +00:00
|
|
|
"src/codec/SkColorTable.cpp",
|
2018-08-27 15:55:46 +00:00
|
|
|
"src/codec/SkEncodedInfo.cpp",
|
2016-07-26 20:55:45 +00:00
|
|
|
"src/codec/SkMaskSwizzler.cpp",
|
|
|
|
"src/codec/SkMasks.cpp",
|
2016-07-27 20:55:26 +00:00
|
|
|
"src/codec/SkSampledCodec.cpp",
|
2016-07-26 20:55:45 +00:00
|
|
|
"src/codec/SkSampler.cpp",
|
Add support for multiple frames in SkCodec
Add an interface to decode frames beyond the first in SkCodec, and
add an implementation for SkGifCodec.
Add getFrameData to SkCodec. This method reads ahead in the stream
to return a vector containing meta data about each frame in the image.
This is not required in order to decode frames beyond the first, but
it allows a client to learn extra information:
- how long the frame should be displayed
- whether a frame should be blended with a prior frame, allowing the
client to provide the prior frame to speed up decoding
Add a new fields to SkCodec::Options:
- fFrameIndex
- fHasPriorFrame
The API is designed so that SkCodec never caches frames. If a
client wants a frame beyond the first, they specify the frame in
Options.fFrameIndex. If the client does not have the
frame's required frame (the frame that this frame must be blended on
top of) cached, they pass false for
Options.fHasPriorFrame. Unless the frame is
independent, the codec will then recursively decode all frames
necessary to decode fFrameIndex. If the client has the required frame
cached, they can put it in the dst they pass to the codec, and the
codec will only draw fFrameIndex onto it.
Replace SkGifCodec's scanline decoding support with progressive
decoding, and update the tests accordingly.
Implement new APIs in SkGifCodec. Instead of using gif_lib, use
GIFImageReader, imported from Chromium (along with its copyright
headers) with the following changes:
- SkGifCodec is now the client
- Replace blink types
- Combine GIFColorMap::buildTable and ::getTable into a method that
creates and returns an SkColorTable
- Input comes from an SkStream, instead of a SegmentReader. Add
SkStreamBuffer, which buffers the (potentially partial) stream in
order to decode progressively.
(FIXME: This requires copying data that previously was read directly
from the SegmentReader. Does this hurt performance? If so, can we
fix it?)
- Remove UMA code
- Instead of reporting screen width and height to the client, allow the
client to query for it
- Fail earlier if the first frame AND screen have size of zero
- Compute required previous frame when adding a new one
- Move GIFParseQuery from GIFImageDecoder to GIFImageReader
- Allow parsing up to a specific frame (to skip parsing the rest of the
stream if a client only wants the first frame)
- Compute whether the first frame has alpha and supports index 8, to
create the SkImageInfo. This happens before reporting that the size
has been decoded.
Add GIFImageDecoder::haveDecodedRow to SkGifCodec, imported from
Chromium (along with its copyright header), with the following changes:
- Add support for sampling
- Use the swizzler
- Keep track of the rows decoded
- Do *not* keep track of whether we've seen alpha
Remove SkCodec::kOutOfOrder_SkScanlineOrder, which was only used by GIF
scanline decoding.
Call onRewind even if there is no stream (SkGifCodec needs to clear its
decoded state so it will decode from the beginning).
Add a method to SkSwizzler to access the offset into the dst, taking
subsetting into account.
Add a GM that animates a GIF.
Add tests for the new APIs.
*** Behavior changes:
* Previously, we reported that an image with a subset frame and no transparent
index was opaque and used the background index (if present) to fill the
background. This is necessary in order to support index 8, but it does not
match viewers/browsers I have seen. Examples:
- Chromium and Gimp render the background transparent
- Firefox, Safari, Linux Image Viewer, Safari Preview clip to the frame (for
a single frame image)
This CL matches Chromium's behavior and renders the background transparent.
This allows us to have consistent behavior across products and simplifies
the code (relative to what we would have to do to continue the old behavior
on Android). It also means that we will no longer support index 8 for some
GIFs.
* Stop checking for GIFSTAMP - all GIFs should be either 89a or 87a.
This matches Chromium. I suspect that bugs would have been reported if valid
GIFs started with "GIFVER" instead of "GIF89a" or "GIF87a" (but did not decode
in Chromium).
*** Future work not included in this CL:
* Move some checks out of haveDecodedRow, since they are the same for the
entire frame e.g.
- intersecting the frameRect with the full image size
- whether there is a color table
* Change when we write transparent pixels
- In some cases, Chromium deemed this unnecessary, but I suspect it is slower
than the fallback case. There will continue to be cases where we should
*not* write them, but for e.g. the first pass where we have already
cleared to transparent (which we may also be able to skip) writing the
transparent pixels will not make anything incorrect.
* Report color type and alpha type per frame
- Depending on alpha values, disposal methods, frame rects, etc, subsequent
frames may have different properties than the first.
* Skip copies of the encoded data
- We copy the encoded data in case the stream is one that cannot be rewound,
so we can parse and then decode (possibly not immediately). For some input
streams, this is unnecessary.
- I was concerned this cause a performance regression, but on average the
new code is faster than the old for the images I tested [1].
- It may cause a performance regression for Chromium, though, where we can
always move back in the stream, so this should be addressed.
Design doc:
https://docs.google.com/a/google.com/document/d/12Qhf9T92MWfdWujQwCIjhCO3sw6pTJB5pJBwDM1T7Kc/
[1] https://docs.google.com/a/google.com/spreadsheets/d/19V-t9BfbFw5eiwBTKA1qOBkZbchjlTC5EIz6HFy-6RI/
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=2045293002
Review-Url: https://codereview.chromium.org/2045293002
2016-10-24 16:03:26 +00:00
|
|
|
"src/codec/SkStreamBuffer.cpp",
|
2016-07-26 20:55:45 +00:00
|
|
|
"src/codec/SkSwizzler.cpp",
|
|
|
|
"src/codec/SkWbmpCodec.cpp",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
"src/images/SkImageEncoder.cpp",
|
|
|
|
"src/ports/SkDiscardableMemory_none.cpp",
|
2018-11-08 12:08:05 +00:00
|
|
|
"src/ports/SkGlobalInitialization_default.cpp",
|
2016-07-26 20:55:45 +00:00
|
|
|
"src/ports/SkImageGenerator_skia.cpp",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
"src/ports/SkMemory_malloc.cpp",
|
|
|
|
"src/ports/SkOSFile_stdio.cpp",
|
|
|
|
"src/sfnt/SkOTTable_name.cpp",
|
|
|
|
"src/sfnt/SkOTUtils.cpp",
|
|
|
|
"src/utils/mac/SkStream_mac.cpp",
|
|
|
|
]
|
2016-09-01 21:24:39 +00:00
|
|
|
|
2018-10-18 13:47:01 +00:00
|
|
|
defines = []
|
|
|
|
if (!skia_enable_skpicture) {
|
|
|
|
defines = [ "SK_DISABLE_SKPICTURE" ]
|
2019-02-26 16:54:25 +00:00
|
|
|
public -= skia_skpicture_public
|
2018-10-18 13:47:01 +00:00
|
|
|
sources -= skia_skpicture_sources
|
2018-11-08 12:08:05 +00:00
|
|
|
sources -= [ "//src/effects/imagefilters/SkPictureImageFilter.cpp" ]
|
2018-10-18 13:47:01 +00:00
|
|
|
sources += [ "src/core/SkPicture_none.cpp" ]
|
|
|
|
}
|
|
|
|
|
2016-08-25 21:50:44 +00:00
|
|
|
libs = []
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
if (is_win) {
|
|
|
|
sources += [
|
|
|
|
"src/ports/SkDebug_win.cpp",
|
|
|
|
"src/ports/SkImageEncoder_WIC.cpp",
|
|
|
|
"src/ports/SkImageGeneratorWIC.cpp",
|
|
|
|
"src/ports/SkOSFile_win.cpp",
|
2016-09-21 21:01:32 +00:00
|
|
|
"src/ports/SkOSLibrary_win.cpp",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
"src/ports/SkTLS_win.cpp",
|
|
|
|
]
|
2016-10-11 22:13:53 +00:00
|
|
|
libs += [
|
|
|
|
"FontSub.lib",
|
|
|
|
"Ole32.lib",
|
|
|
|
"OleAut32.lib",
|
|
|
|
"User32.lib",
|
2017-11-13 17:40:46 +00:00
|
|
|
"Usp10.lib",
|
2016-10-11 22:13:53 +00:00
|
|
|
]
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
} else {
|
|
|
|
sources += [
|
|
|
|
"src/ports/SkOSFile_posix.cpp",
|
2016-09-21 21:01:32 +00:00
|
|
|
"src/ports/SkOSLibrary_posix.cpp",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
"src/ports/SkTLS_pthread.cpp",
|
|
|
|
]
|
2017-08-31 20:45:23 +00:00
|
|
|
libs += [ "dl" ]
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 21:50:44 +00:00
|
|
|
if (is_android) {
|
2017-01-13 20:27:45 +00:00
|
|
|
deps += [ "//third_party/expat" ]
|
2017-03-03 14:21:30 +00:00
|
|
|
if (defined(ndk) && ndk != "") {
|
2017-01-13 20:27:45 +00:00
|
|
|
deps += [ "//third_party/cpu-features" ]
|
|
|
|
}
|
2016-09-20 19:28:12 +00:00
|
|
|
sources += [ "src/ports/SkDebug_android.cpp" ]
|
2016-08-25 21:50:44 +00:00
|
|
|
libs += [
|
|
|
|
"EGL",
|
|
|
|
"GLESv2",
|
|
|
|
"log",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-09-20 21:39:31 +00:00
|
|
|
if (is_linux || target_cpu == "wasm") {
|
2016-09-20 19:28:12 +00:00
|
|
|
sources += [ "src/ports/SkDebug_stdio.cpp" ]
|
2018-03-14 19:16:56 +00:00
|
|
|
if (skia_use_egl) {
|
|
|
|
libs += [ "GLESv2" ]
|
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-28 13:58:47 +00:00
|
|
|
if (skia_use_fonthost_mac) {
|
2018-12-01 01:42:00 +00:00
|
|
|
sources += [ "src/ports/SkFontHost_mac.cpp" ]
|
2018-11-28 13:58:47 +00:00
|
|
|
}
|
|
|
|
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
if (is_mac) {
|
|
|
|
sources += [
|
2016-08-25 21:50:44 +00:00
|
|
|
"src/ports/SkDebug_stdio.cpp",
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
"src/ports/SkImageEncoder_CG.cpp",
|
|
|
|
"src/ports/SkImageGeneratorCG.cpp",
|
|
|
|
]
|
2016-08-23 20:35:28 +00:00
|
|
|
libs += [
|
2017-03-29 15:32:02 +00:00
|
|
|
# AppKit symbols NSFontWeightXXX may be dlsym'ed.
|
|
|
|
"AppKit.framework",
|
2016-08-23 20:35:28 +00:00
|
|
|
"ApplicationServices.framework",
|
|
|
|
"OpenGL.framework",
|
|
|
|
]
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
2016-07-15 22:15:15 +00:00
|
|
|
|
2016-11-03 18:06:31 +00:00
|
|
|
if (is_ios) {
|
|
|
|
sources += [
|
|
|
|
"src/ports/SkDebug_stdio.cpp",
|
|
|
|
"src/ports/SkFontHost_mac.cpp",
|
|
|
|
"src/ports/SkImageEncoder_CG.cpp",
|
|
|
|
"src/ports/SkImageGeneratorCG.cpp",
|
|
|
|
]
|
|
|
|
libs += [
|
|
|
|
"CoreFoundation.framework",
|
|
|
|
"CoreGraphics.framework",
|
|
|
|
"CoreText.framework",
|
|
|
|
"ImageIO.framework",
|
|
|
|
"MobileCoreServices.framework",
|
2017-03-29 15:32:02 +00:00
|
|
|
|
|
|
|
# UIKit symbols UIFontWeightXXX may be dlsym'ed.
|
|
|
|
"UIKit.framework",
|
2016-11-03 18:06:31 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-07-15 22:15:15 +00:00
|
|
|
if (is_fuchsia) {
|
2016-09-20 19:28:12 +00:00
|
|
|
sources += [ "src/ports/SkDebug_stdio.cpp" ]
|
2016-07-15 22:15:15 +00:00
|
|
|
}
|
2019-06-18 14:14:20 +00:00
|
|
|
|
|
|
|
if (skia_enable_spirv_validation) {
|
|
|
|
deps += [ "//third_party/spirv-tools" ]
|
|
|
|
defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
|
|
|
|
}
|
2019-06-25 19:48:47 +00:00
|
|
|
|
|
|
|
if (skia_include_multiframe_procs) {
|
|
|
|
sources += [ "tools/SkSharingProc.cpp" ]
|
|
|
|
}
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 15:45:40 +00:00
|
|
|
# DebugCanvas used in experimental/wasm-skp-debugger
|
|
|
|
if (target_cpu == "wasm") {
|
|
|
|
static_library("debugcanvas") {
|
|
|
|
public_configs = [ ":skia_public" ]
|
|
|
|
|
|
|
|
sources = [
|
2019-06-21 15:09:19 +00:00
|
|
|
"tools/SkSharingProc.cpp",
|
2019-03-05 15:45:40 +00:00
|
|
|
"tools/UrlDataManager.cpp",
|
2019-03-20 16:59:00 +00:00
|
|
|
"tools/debugger/DebugCanvas.cpp",
|
|
|
|
"tools/debugger/DrawCommand.cpp",
|
|
|
|
"tools/debugger/JsonWriteBuffer.cpp",
|
2019-03-05 15:45:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":fontmgr_wasm",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-02 13:02:18 +00:00
|
|
|
static_library("pathkit") {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2018-10-02 13:02:18 +00:00
|
|
|
public_configs = [ ":skia_public" ]
|
|
|
|
configs += skia_library_configs
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":arm64",
|
|
|
|
":armv7",
|
|
|
|
":avx",
|
|
|
|
":crc32",
|
|
|
|
":hsw",
|
|
|
|
":none",
|
|
|
|
":sse2",
|
|
|
|
":sse41",
|
|
|
|
":sse42",
|
|
|
|
":ssse3",
|
|
|
|
]
|
|
|
|
|
|
|
|
# This file (and all GN files in Skia) are designed to work with an
|
|
|
|
# empty sources assignment filter; we handle all that explicitly.
|
|
|
|
# We clear the filter here for clients who may have set up a global filter.
|
|
|
|
set_sources_assignment_filter([])
|
|
|
|
|
|
|
|
sources = []
|
|
|
|
sources += skia_pathops_sources
|
2019-02-26 16:54:25 +00:00
|
|
|
sources += skia_pathops_public
|
2018-10-02 13:02:18 +00:00
|
|
|
sources += [
|
|
|
|
"src/core/SkAnalyticEdge.cpp",
|
|
|
|
"src/core/SkArenaAlloc.cpp",
|
2019-02-06 16:40:27 +00:00
|
|
|
"src/core/SkContourMeasure.cpp",
|
2018-10-02 13:02:18 +00:00
|
|
|
"src/core/SkCubicMap.cpp",
|
|
|
|
"src/core/SkEdge.cpp",
|
|
|
|
"src/core/SkEdgeBuilder.cpp",
|
|
|
|
"src/core/SkEdgeClipper.cpp",
|
|
|
|
"src/core/SkGeometry.cpp",
|
|
|
|
"src/core/SkLineClipper.cpp",
|
|
|
|
"src/core/SkMallocPixelRef.cpp",
|
|
|
|
"src/core/SkMath.cpp",
|
|
|
|
"src/core/SkMatrix.cpp",
|
|
|
|
"src/core/SkOpts.cpp",
|
|
|
|
"src/core/SkPaint.cpp",
|
|
|
|
"src/core/SkPath.cpp",
|
|
|
|
"src/core/SkPathEffect.cpp",
|
|
|
|
"src/core/SkPathMeasure.cpp",
|
|
|
|
"src/core/SkPathRef.cpp",
|
|
|
|
"src/core/SkPoint.cpp",
|
|
|
|
"src/core/SkRRect.cpp",
|
|
|
|
"src/core/SkRect.cpp",
|
|
|
|
"src/core/SkSemaphore.cpp",
|
|
|
|
"src/core/SkStream.cpp",
|
|
|
|
"src/core/SkString.cpp",
|
|
|
|
"src/core/SkStringUtils.cpp",
|
|
|
|
"src/core/SkStroke.cpp",
|
|
|
|
"src/core/SkStrokeRec.cpp",
|
|
|
|
"src/core/SkStrokerPriv.cpp",
|
|
|
|
"src/core/SkThreadID.cpp",
|
|
|
|
"src/core/SkUtils.cpp",
|
|
|
|
"src/effects/SkDashPathEffect.cpp",
|
|
|
|
"src/effects/SkTrimPathEffect.cpp",
|
|
|
|
"src/ports/SkDebug_stdio.cpp",
|
|
|
|
"src/ports/SkMemory_malloc.cpp",
|
|
|
|
"src/utils/SkDashPath.cpp",
|
|
|
|
"src/utils/SkParse.cpp",
|
|
|
|
"src/utils/SkParsePath.cpp",
|
|
|
|
"src/utils/SkUTF.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-02-22 15:04:06 +00:00
|
|
|
group("modules") {
|
|
|
|
deps = [
|
2019-03-05 19:09:24 +00:00
|
|
|
"modules/particles",
|
2019-02-22 15:04:06 +00:00
|
|
|
"modules/skottie",
|
|
|
|
"modules/skshaper",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:14:20 +00:00
|
|
|
executable("cpu_modules") {
|
|
|
|
sources = [
|
|
|
|
"tools/cpu_modules.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
"modules/particles",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-11-18 14:35:28 +00:00
|
|
|
# Targets guarded by skia_enable_tools may use //third_party freely.
|
|
|
|
if (skia_enable_tools) {
|
2019-04-23 17:05:21 +00:00
|
|
|
skia_public_includes = [
|
|
|
|
"include/android",
|
|
|
|
"include/atlastext",
|
|
|
|
"include/c",
|
|
|
|
"include/codec",
|
|
|
|
"include/config",
|
|
|
|
"include/core",
|
|
|
|
"include/docs",
|
|
|
|
"include/effects",
|
|
|
|
"include/encode",
|
|
|
|
"include/gpu",
|
|
|
|
"include/pathops",
|
|
|
|
"include/ports",
|
|
|
|
"include/svg",
|
|
|
|
"include/utils",
|
|
|
|
"include/utils/mac",
|
|
|
|
"modules/sksg/include",
|
|
|
|
"modules/skshaper/include",
|
|
|
|
"modules/skottie/include",
|
|
|
|
]
|
|
|
|
|
2016-12-06 21:03:52 +00:00
|
|
|
# Used by gn_to_bp.py to list our public include dirs.
|
|
|
|
source_set("public") {
|
|
|
|
configs += [ ":skia_public" ]
|
2019-04-23 17:05:21 +00:00
|
|
|
include_dirs = skia_public_includes
|
2016-12-06 21:03:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 14:35:28 +00:00
|
|
|
config("skia.h_config") {
|
|
|
|
include_dirs = [ "$target_gen_dir" ]
|
|
|
|
}
|
|
|
|
action("skia.h") {
|
|
|
|
public_configs = [ ":skia.h_config" ]
|
|
|
|
skia_h = "$target_gen_dir/skia.h"
|
|
|
|
script = "gn/find_headers.py"
|
2018-05-30 13:27:32 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
args = [ rebase_path("//bin/gn") ] + [ rebase_path("//") ] +
|
|
|
|
[ rebase_path(skia_h, root_build_dir) ] +
|
|
|
|
rebase_path(skia_public_includes)
|
2016-11-18 14:35:28 +00:00
|
|
|
depfile = "$skia_h.deps"
|
|
|
|
outputs = [
|
|
|
|
skia_h,
|
|
|
|
]
|
|
|
|
}
|
2016-07-26 20:55:45 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (target_cpu == "x64") {
|
2016-11-18 14:35:28 +00:00
|
|
|
executable("fiddle") {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2016-11-18 14:35:28 +00:00
|
|
|
libs = []
|
|
|
|
sources = [
|
|
|
|
"tools/fiddle/draw.cpp",
|
|
|
|
"tools/fiddle/fiddle_main.cpp",
|
|
|
|
]
|
2017-05-31 13:45:19 +00:00
|
|
|
|
|
|
|
if (skia_use_egl) {
|
|
|
|
sources += [ "tools/fiddle/egl_context.cpp" ]
|
|
|
|
} else {
|
|
|
|
sources += [ "tools/fiddle/null_context.cpp" ]
|
|
|
|
}
|
2017-04-19 18:05:14 +00:00
|
|
|
testonly = true
|
2016-11-18 14:35:28 +00:00
|
|
|
deps = [
|
2017-04-19 18:05:14 +00:00
|
|
|
":flags",
|
2017-11-16 19:59:48 +00:00
|
|
|
":gpu_tool_utils",
|
2016-11-18 14:35:28 +00:00
|
|
|
":skia",
|
|
|
|
":skia.h",
|
2018-05-30 13:27:32 +00:00
|
|
|
"modules/skottie",
|
2019-03-25 21:38:43 +00:00
|
|
|
"modules/skshaper",
|
2016-11-18 14:35:28 +00:00
|
|
|
]
|
|
|
|
}
|
2016-09-15 19:07:48 +00:00
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
|
2019-04-29 14:46:36 +00:00
|
|
|
config("our_vulkan_headers") {
|
|
|
|
# We add this directory to simulate the client already have
|
|
|
|
# vulkan/vulkan_core.h on their path.
|
|
|
|
include_dirs = [ "include/third_party/vulkan" ]
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
source_set("public_headers_warnings_check") {
|
|
|
|
sources = [
|
|
|
|
"tools/public_headers_warnings_check.cpp",
|
|
|
|
]
|
|
|
|
configs -= [ "//gn:warnings_except_public_headers" ]
|
2019-04-29 14:46:36 +00:00
|
|
|
configs += [ ":our_vulkan_headers" ]
|
2018-05-31 17:17:12 +00:00
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":skia.h",
|
|
|
|
"modules/skottie",
|
2019-03-25 21:38:43 +00:00
|
|
|
"modules/skshaper",
|
2018-05-31 17:17:12 +00:00
|
|
|
]
|
2019-07-10 19:51:30 +00:00
|
|
|
|
|
|
|
if (skia_use_dawn) {
|
|
|
|
deps += [ "//third_party/dawn:dawn_headers" ]
|
|
|
|
}
|
2016-11-16 17:13:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
template("test_lib") {
|
|
|
|
config(target_name + "_config") {
|
2016-09-20 20:36:47 +00:00
|
|
|
if (defined(invoker.public_defines)) {
|
|
|
|
defines = invoker.public_defines
|
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
}
|
|
|
|
source_set(target_name) {
|
2019-04-23 17:05:21 +00:00
|
|
|
forward_variables_from(invoker, "*", [])
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2016-08-24 19:23:52 +00:00
|
|
|
public_configs = [
|
|
|
|
":" + target_name + "_config",
|
|
|
|
":skia_private",
|
|
|
|
]
|
|
|
|
|
|
|
|
if (!defined(deps)) {
|
|
|
|
deps = []
|
|
|
|
}
|
|
|
|
deps += [ ":skia" ]
|
|
|
|
testonly = true
|
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
template("test_app") {
|
2017-11-28 14:45:26 +00:00
|
|
|
if (is_ios) {
|
|
|
|
app_name = target_name
|
|
|
|
gen_path = target_gen_dir
|
|
|
|
|
|
|
|
action("${app_name}_generate_info_plist") {
|
|
|
|
script = "//gn/gen_plist_ios.py"
|
|
|
|
outputs = [
|
|
|
|
"$gen_path/${app_name}_Info.plist",
|
|
|
|
]
|
|
|
|
args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
|
2017-01-05 15:54:57 +00:00
|
|
|
}
|
2017-11-28 14:45:26 +00:00
|
|
|
|
|
|
|
bundle_data("${app_name}_bundle_info_plist") {
|
|
|
|
public_deps = [
|
|
|
|
":${app_name}_generate_info_plist",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"$gen_path/${app_name}_Info.plist",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"{{bundle_root_dir}}/Info.plist",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-04-02 15:59:34 +00:00
|
|
|
has_skps = "True" == exec_script("//gn/checkdir.py",
|
|
|
|
[ rebase_path("skps", root_build_dir) ],
|
|
|
|
"trim string")
|
|
|
|
bundle_data("${app_name}_bundle_resources") {
|
|
|
|
sources = [
|
|
|
|
"resources",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
# iOS reserves the folders 'Resources' and 'resources' so store one level deeper
|
|
|
|
"{{bundle_resources_dir}}/data/resources",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
if (has_skps) {
|
|
|
|
bundle_data("${app_name}_bundle_skps") {
|
2017-11-29 16:42:33 +00:00
|
|
|
sources = [
|
2019-04-02 15:59:34 +00:00
|
|
|
"skps",
|
2017-11-29 16:42:33 +00:00
|
|
|
]
|
|
|
|
outputs = [
|
2019-04-02 15:59:34 +00:00
|
|
|
# Store in same folder as resources
|
|
|
|
"{{bundle_resources_dir}}/data/skps",
|
2017-11-29 16:42:33 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 14:45:26 +00:00
|
|
|
executable("${app_name}_generate_executable") {
|
|
|
|
forward_variables_from(invoker,
|
|
|
|
"*",
|
|
|
|
[
|
|
|
|
"output_name",
|
|
|
|
"visibility",
|
|
|
|
"is_shared_library",
|
|
|
|
])
|
2017-07-26 19:13:47 +00:00
|
|
|
configs += [ ":skia_private" ]
|
2017-01-05 15:54:57 +00:00
|
|
|
testonly = true
|
2017-11-28 14:45:26 +00:00
|
|
|
output_name = rebase_path("$gen_path/$app_name", root_build_dir)
|
2017-01-05 15:54:57 +00:00
|
|
|
}
|
2017-11-28 14:45:26 +00:00
|
|
|
|
|
|
|
bundle_data("${app_name}_bundle_executable") {
|
|
|
|
public_deps = [
|
|
|
|
":${app_name}_generate_executable",
|
2017-01-05 17:20:41 +00:00
|
|
|
]
|
2017-11-28 14:45:26 +00:00
|
|
|
sources = [
|
|
|
|
"$gen_path/$app_name",
|
2017-01-05 17:20:41 +00:00
|
|
|
]
|
2017-11-28 14:45:26 +00:00
|
|
|
outputs = [
|
|
|
|
"{{bundle_executable_dir}}/$app_name",
|
2017-01-05 17:20:41 +00:00
|
|
|
]
|
|
|
|
testonly = true
|
|
|
|
}
|
2017-11-28 14:45:26 +00:00
|
|
|
|
2019-04-02 15:59:34 +00:00
|
|
|
bundle_data("${app_name}_bundle_symbols") {
|
|
|
|
public_deps = [
|
|
|
|
":${app_name}_generate_executable",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"$gen_path/${app_name}.dSYM",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"{{bundle_executable_dir}}/${app_name}.dSYM",
|
|
|
|
]
|
|
|
|
testonly = true
|
|
|
|
}
|
|
|
|
|
2017-11-28 14:45:26 +00:00
|
|
|
create_bundle("$app_name") {
|
|
|
|
product_type = "com.apple.product-type.application"
|
|
|
|
testonly = true
|
|
|
|
|
|
|
|
bundle_root_dir = "${root_build_dir}/${target_name}.app"
|
|
|
|
bundle_resources_dir = bundle_root_dir
|
|
|
|
bundle_executable_dir = bundle_root_dir
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":${app_name}_bundle_executable",
|
|
|
|
":${app_name}_bundle_info_plist",
|
2019-04-02 15:59:34 +00:00
|
|
|
":${app_name}_bundle_resources",
|
|
|
|
":${app_name}_bundle_symbols",
|
2017-11-28 14:45:26 +00:00
|
|
|
]
|
2019-04-02 15:59:34 +00:00
|
|
|
if (has_skps) {
|
|
|
|
deps += [ ":${app_name}_bundle_skps" ]
|
2017-11-29 16:42:33 +00:00
|
|
|
}
|
2017-11-28 14:45:26 +00:00
|
|
|
|
|
|
|
# should only code sign when running on a device, not the simulator
|
|
|
|
if (target_cpu != "x64") {
|
|
|
|
code_signing_script = "//gn/codesign_ios.py"
|
|
|
|
code_signing_sources = [ "$target_gen_dir/$app_name" ]
|
|
|
|
code_signing_outputs = [
|
|
|
|
"$bundle_root_dir/_CodeSignature/CodeResources",
|
|
|
|
"$bundle_root_dir/embedded.mobileprovision",
|
|
|
|
]
|
2017-12-07 20:16:10 +00:00
|
|
|
code_signing_args = [
|
|
|
|
rebase_path("$bundle_root_dir", root_build_dir),
|
|
|
|
skia_ios_identity,
|
|
|
|
skia_ios_profile,
|
|
|
|
]
|
2017-11-28 14:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# !is_ios
|
|
|
|
|
|
|
|
if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
|
|
|
|
shared_library("lib" + target_name) {
|
|
|
|
forward_variables_from(invoker, "*", [ "is_shared_library" ])
|
|
|
|
configs += [ ":skia_private" ]
|
|
|
|
testonly = true
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_executable = target_name
|
|
|
|
executable(_executable) {
|
2019-02-26 16:54:25 +00:00
|
|
|
check_includes = false
|
2017-11-28 14:45:26 +00:00
|
|
|
forward_variables_from(invoker, "*", [ "is_shared_library" ])
|
|
|
|
configs += [ ":skia_private" ]
|
|
|
|
testonly = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_android && skia_android_serial != "" && defined(_executable)) {
|
|
|
|
action("push_" + target_name) {
|
|
|
|
script = "gn/push_to_android.py"
|
|
|
|
deps = [
|
|
|
|
":" + _executable,
|
|
|
|
]
|
|
|
|
_stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
|
|
|
|
outputs = [
|
|
|
|
_stamp,
|
|
|
|
]
|
|
|
|
args = [
|
|
|
|
rebase_path("$root_build_dir/$_executable"),
|
|
|
|
skia_android_serial,
|
|
|
|
rebase_path(_stamp),
|
|
|
|
]
|
|
|
|
testonly = true
|
|
|
|
}
|
|
|
|
}
|
2017-01-05 17:20:41 +00:00
|
|
|
}
|
2017-01-05 15:54:57 +00:00
|
|
|
}
|
|
|
|
|
2018-08-01 13:23:57 +00:00
|
|
|
config("moltenvk_config") {
|
|
|
|
if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
|
|
|
|
if (is_ios) {
|
|
|
|
moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/iOS"
|
|
|
|
} else {
|
|
|
|
moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/macOS"
|
|
|
|
}
|
|
|
|
cflags = [ "-F$moltenvk_framework_path" ]
|
|
|
|
ldflags = [ "-F$moltenvk_framework_path" ]
|
|
|
|
libs = [
|
|
|
|
"MoltenVK.framework",
|
|
|
|
"Metal.framework",
|
|
|
|
"IOSurface.framework",
|
|
|
|
"QuartzCore.framework",
|
|
|
|
"Foundation.framework",
|
|
|
|
]
|
|
|
|
if (is_ios) {
|
|
|
|
libs += [ "UIKit.framework" ]
|
|
|
|
} else {
|
|
|
|
libs += [ "IOKit.framework" ]
|
|
|
|
}
|
|
|
|
defines = [ "SK_MOLTENVK" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
source_set("moltenvk") {
|
|
|
|
public_configs = [ ":moltenvk_config" ]
|
|
|
|
}
|
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("gpu_tool_utils") {
|
2018-05-31 17:17:12 +00:00
|
|
|
public_defines = []
|
2016-09-23 20:18:41 +00:00
|
|
|
|
2019-04-29 14:46:36 +00:00
|
|
|
# Bots and even devs may not have Vulkan headers, so put
|
|
|
|
# include/third_party/vulkan on our path so they're always available.
|
|
|
|
all_dependent_configs = [ ":our_vulkan_headers" ]
|
|
|
|
|
2019-04-24 13:48:11 +00:00
|
|
|
defines = []
|
|
|
|
if (skia_enable_discrete_gpu) {
|
|
|
|
defines += [ "SK_ENABLE_DISCRETE_GPU" ]
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
deps = []
|
2018-08-01 13:23:57 +00:00
|
|
|
public_deps = []
|
2018-05-31 17:17:12 +00:00
|
|
|
sources = [
|
|
|
|
"tools/gpu/GrContextFactory.cpp",
|
|
|
|
"tools/gpu/GrTest.cpp",
|
2018-07-11 19:32:05 +00:00
|
|
|
"tools/gpu/MemoryCache.cpp",
|
|
|
|
"tools/gpu/MemoryCache.h",
|
2018-05-31 17:17:12 +00:00
|
|
|
"tools/gpu/ProxyUtils.cpp",
|
|
|
|
"tools/gpu/TestContext.cpp",
|
2019-03-21 17:08:36 +00:00
|
|
|
"tools/gpu/YUVUtils.cpp",
|
|
|
|
"tools/gpu/YUVUtils.h",
|
2018-05-31 17:17:12 +00:00
|
|
|
"tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
|
|
|
|
"tools/gpu/gl/GLTestContext.cpp",
|
|
|
|
"tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
|
|
|
|
"tools/gpu/mock/MockTestContext.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
2016-09-21 17:11:25 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (is_android || skia_use_egl) {
|
|
|
|
sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
|
|
|
|
} else if (is_ios) {
|
|
|
|
sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
|
|
|
|
libs += [ "OpenGLES.framework" ]
|
|
|
|
} else if (is_linux) {
|
|
|
|
sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
|
2018-06-20 15:06:39 +00:00
|
|
|
libs += [
|
|
|
|
"GLU",
|
|
|
|
"X11",
|
|
|
|
]
|
2018-05-31 17:17:12 +00:00
|
|
|
} else if (is_mac) {
|
|
|
|
sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
|
|
|
|
} else if (is_win) {
|
|
|
|
sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
|
2018-12-10 15:27:26 +00:00
|
|
|
libs += [ "Gdi32.lib" ]
|
|
|
|
if (target_cpu != "arm64") {
|
|
|
|
libs += [ "OpenGL32.lib" ]
|
|
|
|
}
|
2018-05-31 17:17:12 +00:00
|
|
|
}
|
2016-11-11 20:35:34 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
cflags_objcc = [ "-fobjc-arc" ]
|
2017-07-12 20:21:09 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (skia_use_angle) {
|
|
|
|
deps += [ "//third_party/angle2" ]
|
|
|
|
sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
|
|
|
|
}
|
2018-12-11 22:03:39 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (skia_use_vulkan) {
|
|
|
|
sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
|
|
|
|
sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
|
2018-08-01 13:23:57 +00:00
|
|
|
if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
|
|
|
|
public_deps += [ ":moltenvk" ]
|
|
|
|
}
|
2018-05-31 17:17:12 +00:00
|
|
|
}
|
|
|
|
if (skia_use_metal) {
|
|
|
|
sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
|
2016-09-20 20:36:47 +00:00
|
|
|
}
|
2019-07-18 15:43:45 +00:00
|
|
|
if (skia_use_dawn) {
|
|
|
|
public_deps += [ "//third_party/dawn:dawn_headers" ]
|
|
|
|
sources += [ "tools/gpu/dawn/DawnTestContext.cpp" ]
|
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("flags") {
|
|
|
|
sources = [
|
2019-03-20 15:50:33 +00:00
|
|
|
"tools/flags/CommandLineFlags.cpp",
|
2016-09-16 17:23:12 +00:00
|
|
|
]
|
|
|
|
}
|
2019-03-25 15:54:59 +00:00
|
|
|
|
|
|
|
test_lib("common_flags_config") {
|
2016-09-16 17:23:12 +00:00
|
|
|
sources = [
|
2019-03-20 15:50:33 +00:00
|
|
|
"tools/flags/CommonFlagsConfig.cpp",
|
2016-08-24 19:23:52 +00:00
|
|
|
]
|
|
|
|
deps = [
|
2016-09-16 17:23:12 +00:00
|
|
|
":flags",
|
2018-08-01 13:23:57 +00:00
|
|
|
]
|
|
|
|
public_deps = [
|
2016-08-24 19:23:52 +00:00
|
|
|
":gpu_tool_utils",
|
|
|
|
]
|
2016-07-27 20:55:26 +00:00
|
|
|
}
|
2019-03-25 15:54:59 +00:00
|
|
|
test_lib("common_flags_gpu") {
|
|
|
|
sources = [
|
|
|
|
"tools/flags/CommonFlagsGpu.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
]
|
|
|
|
public_deps = [
|
|
|
|
":gpu_tool_utils",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_lib("common_flags_images") {
|
|
|
|
sources = [
|
|
|
|
"tools/flags/CommonFlagsImages.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_lib("common_flags_aa") {
|
|
|
|
sources = [
|
|
|
|
"tools/flags/CommonFlagsAA.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
]
|
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
|
2019-03-25 18:00:12 +00:00
|
|
|
test_lib("trace") {
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
]
|
|
|
|
sources = [
|
|
|
|
"tools/trace/ChromeTracingTracer.cpp",
|
|
|
|
"tools/trace/ChromeTracingTracer.h",
|
|
|
|
"tools/trace/EventTracingPriv.cpp",
|
|
|
|
"tools/trace/EventTracingPriv.h",
|
|
|
|
"tools/trace/SkDebugfTracer.cpp",
|
|
|
|
"tools/trace/SkDebugfTracer.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("tool_utils") {
|
|
|
|
sources = [
|
2016-09-09 18:07:45 +00:00
|
|
|
"tools/AndroidSkDebugToStdOut.cpp",
|
2019-05-31 14:49:12 +00:00
|
|
|
"tools/AutoreleasePool.h",
|
2016-08-24 19:23:52 +00:00
|
|
|
"tools/CrashHandler.cpp",
|
2018-05-29 20:13:26 +00:00
|
|
|
"tools/DDLPromiseImageHelper.cpp",
|
|
|
|
"tools/DDLTileHelper.cpp",
|
2016-09-01 14:06:54 +00:00
|
|
|
"tools/LsanSuppressions.cpp",
|
2016-08-24 19:23:52 +00:00
|
|
|
"tools/ProcStats.cpp",
|
|
|
|
"tools/Resources.cpp",
|
2019-07-15 18:01:37 +00:00
|
|
|
"tools/SkMetaData.cpp",
|
|
|
|
"tools/SkMetaData.h",
|
2019-06-21 15:09:19 +00:00
|
|
|
"tools/SkSharingProc.cpp",
|
2019-03-20 16:12:10 +00:00
|
|
|
"tools/ToolUtils.cpp",
|
2016-08-24 19:23:52 +00:00
|
|
|
"tools/UrlDataManager.cpp",
|
2019-03-20 16:59:00 +00:00
|
|
|
"tools/debugger/DebugCanvas.cpp",
|
|
|
|
"tools/debugger/DrawCommand.cpp",
|
|
|
|
"tools/debugger/JsonWriteBuffer.cpp",
|
2019-03-20 16:08:46 +00:00
|
|
|
"tools/fonts/RandomScalerContext.cpp",
|
|
|
|
"tools/fonts/TestEmptyTypeface.h",
|
|
|
|
"tools/fonts/TestFontMgr.cpp",
|
|
|
|
"tools/fonts/TestFontMgr.h",
|
|
|
|
"tools/fonts/TestSVGTypeface.cpp",
|
|
|
|
"tools/fonts/TestSVGTypeface.h",
|
|
|
|
"tools/fonts/TestTypeface.cpp",
|
|
|
|
"tools/fonts/TestTypeface.h",
|
2019-03-20 16:12:10 +00:00
|
|
|
"tools/fonts/ToolUtilsFont.cpp",
|
2016-08-24 19:23:52 +00:00
|
|
|
"tools/random_parse_path.cpp",
|
2019-07-11 20:32:53 +00:00
|
|
|
"tools/timer/TimeUtils.h",
|
2016-08-24 19:23:52 +00:00
|
|
|
"tools/timer/Timer.cpp",
|
|
|
|
]
|
2017-02-06 14:26:14 +00:00
|
|
|
libs = []
|
|
|
|
if (is_ios) {
|
|
|
|
sources += [ "tools/ios_utils.m" ]
|
2019-05-31 14:49:12 +00:00
|
|
|
sources += [ "tools/ios_utils.h" ]
|
|
|
|
if (skia_use_metal) {
|
|
|
|
sources += [ "tools/AutoreleasePool.mm" ]
|
|
|
|
}
|
2017-02-06 14:26:14 +00:00
|
|
|
libs += [ "Foundation.framework" ]
|
2019-05-31 14:49:12 +00:00
|
|
|
} else if (is_mac) {
|
|
|
|
if (skia_use_metal) {
|
|
|
|
sources += [ "tools/AutoreleasePool.mm" ]
|
|
|
|
libs += [ "Foundation.framework" ]
|
|
|
|
}
|
2019-04-15 16:32:16 +00:00
|
|
|
} else if (is_win) {
|
|
|
|
libs += [ "DbgHelp.lib" ]
|
2017-02-06 14:26:14 +00:00
|
|
|
}
|
2019-04-15 16:32:16 +00:00
|
|
|
|
2018-04-24 15:47:23 +00:00
|
|
|
defines = []
|
|
|
|
if (skia_tools_require_resources) {
|
|
|
|
defines += [ "SK_TOOLS_REQUIRE_RESOURCES" ]
|
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
deps = [
|
2018-02-15 15:20:04 +00:00
|
|
|
":experimental_svg_model",
|
2016-08-24 19:23:52 +00:00
|
|
|
":flags",
|
2019-03-26 14:05:52 +00:00
|
|
|
]
|
|
|
|
public_deps = [
|
2019-03-25 15:54:59 +00:00
|
|
|
":gpu_tool_utils",
|
2016-08-24 19:23:52 +00:00
|
|
|
]
|
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
|
2019-04-24 17:46:06 +00:00
|
|
|
test_lib("etc1") {
|
|
|
|
sources = [
|
|
|
|
"third_party/etc1/etc1.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-05-17 20:50:51 +00:00
|
|
|
if (skia_use_ffmpeg) {
|
|
|
|
test_lib("video_decoder") {
|
|
|
|
sources = [
|
|
|
|
"experimental/ffmpeg/SkVideoDecoder.cpp",
|
|
|
|
"experimental/ffmpeg/SkVideoDecoder.h",
|
2019-05-28 20:11:03 +00:00
|
|
|
"experimental/ffmpeg/SkVideoEncoder.cpp",
|
|
|
|
"experimental/ffmpeg/SkVideoEncoder.h",
|
2019-05-17 20:50:51 +00:00
|
|
|
]
|
|
|
|
libs = [
|
2019-05-29 17:33:55 +00:00
|
|
|
"swscale",
|
2019-05-17 20:50:51 +00:00
|
|
|
"avcodec",
|
|
|
|
"avformat",
|
|
|
|
"avutil",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-27 16:21:40 +00:00
|
|
|
import("gn/gm.gni")
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("gm") {
|
|
|
|
sources = gm_sources
|
|
|
|
deps = [
|
2019-04-24 17:46:06 +00:00
|
|
|
":etc1",
|
Add support for multiple frames in SkCodec
Add an interface to decode frames beyond the first in SkCodec, and
add an implementation for SkGifCodec.
Add getFrameData to SkCodec. This method reads ahead in the stream
to return a vector containing meta data about each frame in the image.
This is not required in order to decode frames beyond the first, but
it allows a client to learn extra information:
- how long the frame should be displayed
- whether a frame should be blended with a prior frame, allowing the
client to provide the prior frame to speed up decoding
Add a new fields to SkCodec::Options:
- fFrameIndex
- fHasPriorFrame
The API is designed so that SkCodec never caches frames. If a
client wants a frame beyond the first, they specify the frame in
Options.fFrameIndex. If the client does not have the
frame's required frame (the frame that this frame must be blended on
top of) cached, they pass false for
Options.fHasPriorFrame. Unless the frame is
independent, the codec will then recursively decode all frames
necessary to decode fFrameIndex. If the client has the required frame
cached, they can put it in the dst they pass to the codec, and the
codec will only draw fFrameIndex onto it.
Replace SkGifCodec's scanline decoding support with progressive
decoding, and update the tests accordingly.
Implement new APIs in SkGifCodec. Instead of using gif_lib, use
GIFImageReader, imported from Chromium (along with its copyright
headers) with the following changes:
- SkGifCodec is now the client
- Replace blink types
- Combine GIFColorMap::buildTable and ::getTable into a method that
creates and returns an SkColorTable
- Input comes from an SkStream, instead of a SegmentReader. Add
SkStreamBuffer, which buffers the (potentially partial) stream in
order to decode progressively.
(FIXME: This requires copying data that previously was read directly
from the SegmentReader. Does this hurt performance? If so, can we
fix it?)
- Remove UMA code
- Instead of reporting screen width and height to the client, allow the
client to query for it
- Fail earlier if the first frame AND screen have size of zero
- Compute required previous frame when adding a new one
- Move GIFParseQuery from GIFImageDecoder to GIFImageReader
- Allow parsing up to a specific frame (to skip parsing the rest of the
stream if a client only wants the first frame)
- Compute whether the first frame has alpha and supports index 8, to
create the SkImageInfo. This happens before reporting that the size
has been decoded.
Add GIFImageDecoder::haveDecodedRow to SkGifCodec, imported from
Chromium (along with its copyright header), with the following changes:
- Add support for sampling
- Use the swizzler
- Keep track of the rows decoded
- Do *not* keep track of whether we've seen alpha
Remove SkCodec::kOutOfOrder_SkScanlineOrder, which was only used by GIF
scanline decoding.
Call onRewind even if there is no stream (SkGifCodec needs to clear its
decoded state so it will decode from the beginning).
Add a method to SkSwizzler to access the offset into the dst, taking
subsetting into account.
Add a GM that animates a GIF.
Add tests for the new APIs.
*** Behavior changes:
* Previously, we reported that an image with a subset frame and no transparent
index was opaque and used the background index (if present) to fill the
background. This is necessary in order to support index 8, but it does not
match viewers/browsers I have seen. Examples:
- Chromium and Gimp render the background transparent
- Firefox, Safari, Linux Image Viewer, Safari Preview clip to the frame (for
a single frame image)
This CL matches Chromium's behavior and renders the background transparent.
This allows us to have consistent behavior across products and simplifies
the code (relative to what we would have to do to continue the old behavior
on Android). It also means that we will no longer support index 8 for some
GIFs.
* Stop checking for GIFSTAMP - all GIFs should be either 89a or 87a.
This matches Chromium. I suspect that bugs would have been reported if valid
GIFs started with "GIFVER" instead of "GIF89a" or "GIF87a" (but did not decode
in Chromium).
*** Future work not included in this CL:
* Move some checks out of haveDecodedRow, since they are the same for the
entire frame e.g.
- intersecting the frameRect with the full image size
- whether there is a color table
* Change when we write transparent pixels
- In some cases, Chromium deemed this unnecessary, but I suspect it is slower
than the fallback case. There will continue to be cases where we should
*not* write them, but for e.g. the first pass where we have already
cleared to transparent (which we may also be able to skip) writing the
transparent pixels will not make anything incorrect.
* Report color type and alpha type per frame
- Depending on alpha values, disposal methods, frame rects, etc, subsequent
frames may have different properties than the first.
* Skip copies of the encoded data
- We copy the encoded data in case the stream is one that cannot be rewound,
so we can parse and then decode (possibly not immediately). For some input
streams, this is unnecessary.
- I was concerned this cause a performance regression, but on average the
new code is faster than the old for the images I tested [1].
- It may cause a performance regression for Chromium, though, where we can
always move back in the stream, so this should be addressed.
Design doc:
https://docs.google.com/a/google.com/document/d/12Qhf9T92MWfdWujQwCIjhCO3sw6pTJB5pJBwDM1T7Kc/
[1] https://docs.google.com/a/google.com/spreadsheets/d/19V-t9BfbFw5eiwBTKA1qOBkZbchjlTC5EIz6HFy-6RI/
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=2045293002
Review-Url: https://codereview.chromium.org/2045293002
2016-10-24 16:03:26 +00:00
|
|
|
":flags",
|
2016-08-24 19:23:52 +00:00
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
2018-05-31 18:22:30 +00:00
|
|
|
"modules/skottie",
|
2018-09-20 18:35:30 +00:00
|
|
|
"modules/skottie:gm",
|
2018-05-25 16:43:51 +00:00
|
|
|
"modules/sksg",
|
2019-04-10 18:08:44 +00:00
|
|
|
"modules/skshaper",
|
2016-08-24 19:23:52 +00:00
|
|
|
]
|
2018-08-01 13:23:57 +00:00
|
|
|
public_deps = [
|
|
|
|
":gpu_tool_utils",
|
|
|
|
]
|
2019-05-17 20:50:51 +00:00
|
|
|
|
|
|
|
if (skia_use_ffmpeg) {
|
|
|
|
deps += [ ":video_decoder" ]
|
|
|
|
sources += [ "gm/video_decoder.cpp" ]
|
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
|
2019-06-03 22:10:59 +00:00
|
|
|
test_lib("skvm_builders") {
|
|
|
|
sources = [
|
|
|
|
"tools/SkVMBuilders.cpp",
|
|
|
|
"tools/SkVMBuilders.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-10-27 16:21:40 +00:00
|
|
|
import("gn/tests.gni")
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("tests") {
|
2016-10-27 16:21:40 +00:00
|
|
|
sources = tests_sources + pathops_tests_sources
|
2019-05-16 16:43:11 +00:00
|
|
|
if (skia_use_metal) {
|
|
|
|
sources += metal_tests_sources
|
|
|
|
}
|
2018-11-13 18:50:12 +00:00
|
|
|
if (!skia_enable_fontmgr_android) {
|
2016-10-27 16:21:40 +00:00
|
|
|
sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
|
2016-08-29 22:22:10 +00:00
|
|
|
}
|
2018-06-22 21:11:00 +00:00
|
|
|
if (!(skia_use_freetype && skia_use_fontconfig)) {
|
|
|
|
sources -= [ "//tests/FontMgrFontConfigTest.cpp" ]
|
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
deps = [
|
2018-03-22 19:21:12 +00:00
|
|
|
":experimental_svg_model",
|
2016-08-24 19:23:52 +00:00
|
|
|
":flags",
|
|
|
|
":skia",
|
2019-06-03 22:10:59 +00:00
|
|
|
":skvm_builders",
|
2016-08-24 19:23:52 +00:00
|
|
|
":tool_utils",
|
2018-06-18 17:10:51 +00:00
|
|
|
"modules/skottie:tests",
|
2019-05-30 20:12:56 +00:00
|
|
|
"modules/skparagraph:tests",
|
2018-06-01 19:20:00 +00:00
|
|
|
"modules/sksg:tests",
|
2019-04-10 18:08:44 +00:00
|
|
|
"modules/skshaper",
|
2016-08-24 19:23:52 +00:00
|
|
|
"//third_party/libpng",
|
2019-02-22 17:32:16 +00:00
|
|
|
"//third_party/libwebp",
|
2016-08-24 19:23:52 +00:00
|
|
|
"//third_party/zlib",
|
|
|
|
]
|
2017-03-27 18:16:04 +00:00
|
|
|
public_deps = [
|
|
|
|
":gpu_tool_utils", # Test.h #includes headers from this target.
|
|
|
|
]
|
2016-08-24 19:23:52 +00:00
|
|
|
}
|
2016-08-02 23:02:05 +00:00
|
|
|
|
2016-10-27 16:21:40 +00:00
|
|
|
import("gn/bench.gni")
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("bench") {
|
|
|
|
sources = bench_sources
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
2019-06-03 22:10:59 +00:00
|
|
|
":skvm_builders",
|
2016-08-24 19:23:52 +00:00
|
|
|
":tool_utils",
|
2019-05-30 20:12:56 +00:00
|
|
|
"modules/skparagraph:bench",
|
2019-06-12 14:20:44 +00:00
|
|
|
"modules/skshaper",
|
2016-08-24 19:23:52 +00:00
|
|
|
]
|
|
|
|
}
|
2016-07-28 21:17:33 +00:00
|
|
|
|
2016-08-24 19:23:52 +00:00
|
|
|
test_lib("experimental_svg_model") {
|
2018-03-22 19:21:12 +00:00
|
|
|
if (skia_use_expat) {
|
|
|
|
sources = [
|
|
|
|
"experimental/svg/model/SkSVGAttribute.cpp",
|
|
|
|
"experimental/svg/model/SkSVGAttributeParser.cpp",
|
|
|
|
"experimental/svg/model/SkSVGCircle.cpp",
|
|
|
|
"experimental/svg/model/SkSVGClipPath.cpp",
|
|
|
|
"experimental/svg/model/SkSVGContainer.cpp",
|
|
|
|
"experimental/svg/model/SkSVGDOM.cpp",
|
|
|
|
"experimental/svg/model/SkSVGEllipse.cpp",
|
|
|
|
"experimental/svg/model/SkSVGGradient.cpp",
|
|
|
|
"experimental/svg/model/SkSVGLine.cpp",
|
|
|
|
"experimental/svg/model/SkSVGLinearGradient.cpp",
|
|
|
|
"experimental/svg/model/SkSVGNode.cpp",
|
|
|
|
"experimental/svg/model/SkSVGPath.cpp",
|
|
|
|
"experimental/svg/model/SkSVGPattern.cpp",
|
|
|
|
"experimental/svg/model/SkSVGPoly.cpp",
|
|
|
|
"experimental/svg/model/SkSVGRadialGradient.cpp",
|
|
|
|
"experimental/svg/model/SkSVGRect.cpp",
|
|
|
|
"experimental/svg/model/SkSVGRenderContext.cpp",
|
|
|
|
"experimental/svg/model/SkSVGSVG.cpp",
|
|
|
|
"experimental/svg/model/SkSVGShape.cpp",
|
|
|
|
"experimental/svg/model/SkSVGStop.cpp",
|
|
|
|
"experimental/svg/model/SkSVGTransformableNode.cpp",
|
|
|
|
"experimental/svg/model/SkSVGUse.cpp",
|
|
|
|
"experimental/svg/model/SkSVGValue.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":xml",
|
|
|
|
]
|
|
|
|
}
|
2016-08-24 19:23:52 +00:00
|
|
|
}
|
2016-08-04 02:53:36 +00:00
|
|
|
|
2019-06-12 14:20:44 +00:00
|
|
|
test_lib("experimental_xform") {
|
|
|
|
sources = [
|
|
|
|
"experimental/xform/SkShape.cpp",
|
|
|
|
"experimental/xform/SkXform.cpp",
|
|
|
|
"experimental/xform/XContext.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-11-11 16:39:44 +00:00
|
|
|
if (skia_use_lua) {
|
|
|
|
test_lib("lua") {
|
|
|
|
sources = [
|
|
|
|
"src/utils/SkLua.cpp",
|
|
|
|
"src/utils/SkLuaCanvas.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
2018-05-29 19:53:40 +00:00
|
|
|
"modules/skshaper",
|
2016-11-11 16:39:44 +00:00
|
|
|
"//third_party/lua",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("lua_app") {
|
2016-11-11 16:39:44 +00:00
|
|
|
sources = [
|
|
|
|
"tools/lua/lua_app.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":lua",
|
|
|
|
":skia",
|
|
|
|
"//third_party/lua",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("lua_pictures") {
|
2016-11-11 16:39:44 +00:00
|
|
|
sources = [
|
|
|
|
"tools/lua/lua_pictures.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":lua",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
"//third_party/lua",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-02 16:33:59 +00:00
|
|
|
if (is_linux || is_mac) {
|
2018-06-05 20:16:57 +00:00
|
|
|
test_app("skottie_tool") {
|
|
|
|
deps = [
|
|
|
|
"modules/skottie:tool",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 17:29:46 +00:00
|
|
|
test_app("make_skqp_model") {
|
|
|
|
sources = [
|
|
|
|
"tools/skqp/make_skqp_model.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-09-21 17:45:16 +00:00
|
|
|
if (target_cpu != "wasm") {
|
|
|
|
import("gn/samples.gni")
|
|
|
|
test_lib("samples") {
|
2018-02-12 06:47:34 +00:00
|
|
|
sources = samples_sources
|
2018-08-08 15:36:17 +00:00
|
|
|
public_deps = [
|
|
|
|
":tool_utils",
|
|
|
|
]
|
2017-09-21 17:45:16 +00:00
|
|
|
deps = [
|
|
|
|
":experimental_svg_model",
|
|
|
|
":flags",
|
2019-03-25 15:54:59 +00:00
|
|
|
":gpu_tool_utils",
|
2017-09-21 17:45:16 +00:00
|
|
|
":xml",
|
2019-05-30 20:12:56 +00:00
|
|
|
"modules/skparagraph:samples",
|
2019-02-12 16:31:27 +00:00
|
|
|
"modules/sksg",
|
2018-05-29 19:53:40 +00:00
|
|
|
"modules/skshaper",
|
2017-09-21 17:45:16 +00:00
|
|
|
]
|
2016-11-11 16:39:44 +00:00
|
|
|
|
2017-09-21 17:45:16 +00:00
|
|
|
if (skia_use_lua) {
|
|
|
|
sources += [ "samplecode/SampleLua.cpp" ]
|
|
|
|
deps += [
|
|
|
|
":lua",
|
|
|
|
"//third_party/lua",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2018-07-27 13:54:43 +00:00
|
|
|
test_app("imgcvt") {
|
|
|
|
sources = [
|
|
|
|
"tools/imgcvt.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skcms",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
FM, a dumber new testing tool
FM's a bit like DM, and a bit like the old GM tool, maybe closer to GM.
FM always does one serial run through of a list of GM, image, or .skp
sources (-s/--sources) into one drawing configuration, set at a high
level with -b/--backend, fine-tuned by flags like --ct, --at, --gamut,
--samples, etc.
FM prints all available GMs when run with no arguments, part of
how it integrates well with external parallelization like xargs:
out/fm | time xargs -n4 -P32 out/fm -b cpu ... -s
out/fm | time xargs -n32 -P8 out/fm -b gl ... -s
ls *.skp | xargs ... out/fm ... -s
...
TODO later:
vector backends: --backend pdf, svg, xps, skp
--source *.svg, *.json (Skottie)
Create/update a dm.json file
Change-Id: Idacbd2785deaf6f1d33674c66c4d984fa91dbd85
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203520
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-03-25 17:57:58 +00:00
|
|
|
test_lib("hash_and_encode") {
|
|
|
|
sources = [
|
|
|
|
"tools/HashAndEncode.cpp",
|
|
|
|
"tools/HashAndEncode.h",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
"//third_party/libpng",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_app("fm") {
|
|
|
|
sources = [
|
|
|
|
"tools/fm/fm.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":common_flags_aa",
|
|
|
|
":common_flags_gpu",
|
2019-03-27 20:09:12 +00:00
|
|
|
":experimental_svg_model",
|
FM, a dumber new testing tool
FM's a bit like DM, and a bit like the old GM tool, maybe closer to GM.
FM always does one serial run through of a list of GM, image, or .skp
sources (-s/--sources) into one drawing configuration, set at a high
level with -b/--backend, fine-tuned by flags like --ct, --at, --gamut,
--samples, etc.
FM prints all available GMs when run with no arguments, part of
how it integrates well with external parallelization like xargs:
out/fm | time xargs -n4 -P32 out/fm -b cpu ... -s
out/fm | time xargs -n32 -P8 out/fm -b gl ... -s
ls *.skp | xargs ... out/fm ... -s
...
TODO later:
vector backends: --backend pdf, svg, xps, skp
--source *.svg, *.json (Skottie)
Create/update a dm.json file
Change-Id: Idacbd2785deaf6f1d33674c66c4d984fa91dbd85
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203520
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-03-25 17:57:58 +00:00
|
|
|
":flags",
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":hash_and_encode",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
":trace",
|
2019-04-02 18:14:56 +00:00
|
|
|
"modules/skottie",
|
|
|
|
"modules/skottie:utils",
|
FM, a dumber new testing tool
FM's a bit like DM, and a bit like the old GM tool, maybe closer to GM.
FM always does one serial run through of a list of GM, image, or .skp
sources (-s/--sources) into one drawing configuration, set at a high
level with -b/--backend, fine-tuned by flags like --ct, --at, --gamut,
--samples, etc.
FM prints all available GMs when run with no arguments, part of
how it integrates well with external parallelization like xargs:
out/fm | time xargs -n4 -P32 out/fm -b cpu ... -s
out/fm | time xargs -n32 -P8 out/fm -b gl ... -s
ls *.skp | xargs ... out/fm ... -s
...
TODO later:
vector backends: --backend pdf, svg, xps, skp
--source *.svg, *.json (Skottie)
Create/update a dm.json file
Change-Id: Idacbd2785deaf6f1d33674c66c4d984fa91dbd85
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203520
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-03-25 17:57:58 +00:00
|
|
|
]
|
|
|
|
}
|
2017-09-21 17:45:16 +00:00
|
|
|
test_app("dm") {
|
|
|
|
sources = [
|
|
|
|
"dm/DM.cpp",
|
2017-10-09 20:13:02 +00:00
|
|
|
"dm/DMGpuTestProcs.cpp",
|
2017-09-21 17:45:16 +00:00
|
|
|
"dm/DMJsonWriter.cpp",
|
|
|
|
"dm/DMSrcSink.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
2019-03-25 15:54:59 +00:00
|
|
|
":common_flags_aa",
|
|
|
|
":common_flags_config",
|
|
|
|
":common_flags_gpu",
|
|
|
|
":common_flags_images",
|
2017-09-21 17:45:16 +00:00
|
|
|
":experimental_svg_model",
|
|
|
|
":flags",
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
FM, a dumber new testing tool
FM's a bit like DM, and a bit like the old GM tool, maybe closer to GM.
FM always does one serial run through of a list of GM, image, or .skp
sources (-s/--sources) into one drawing configuration, set at a high
level with -b/--backend, fine-tuned by flags like --ct, --at, --gamut,
--samples, etc.
FM prints all available GMs when run with no arguments, part of
how it integrates well with external parallelization like xargs:
out/fm | time xargs -n4 -P32 out/fm -b cpu ... -s
out/fm | time xargs -n32 -P8 out/fm -b gl ... -s
ls *.skp | xargs ... out/fm ... -s
...
TODO later:
vector backends: --backend pdf, svg, xps, skp
--source *.svg, *.json (Skottie)
Create/update a dm.json file
Change-Id: Idacbd2785deaf6f1d33674c66c4d984fa91dbd85
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203520
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-03-25 17:57:58 +00:00
|
|
|
":hash_and_encode",
|
2017-09-21 17:45:16 +00:00
|
|
|
":skia",
|
|
|
|
":tests",
|
|
|
|
":tool_utils",
|
2019-03-25 18:00:12 +00:00
|
|
|
":trace",
|
2018-05-26 13:49:28 +00:00
|
|
|
"modules/skottie",
|
2018-11-09 21:19:44 +00:00
|
|
|
"modules/skottie:utils",
|
2018-05-25 16:43:51 +00:00
|
|
|
"modules/sksg",
|
2016-11-11 16:39:44 +00:00
|
|
|
]
|
|
|
|
}
|
2016-10-18 18:42:44 +00:00
|
|
|
}
|
|
|
|
|
2018-01-09 17:34:11 +00:00
|
|
|
if (!is_win) {
|
|
|
|
test_app("remote_demo") {
|
|
|
|
sources = [
|
|
|
|
"tools/remote_demo.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("nanobench") {
|
2016-07-28 21:17:33 +00:00
|
|
|
sources = [
|
|
|
|
"bench/nanobench.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":bench",
|
2019-03-25 15:54:59 +00:00
|
|
|
":common_flags_aa",
|
|
|
|
":common_flags_config",
|
|
|
|
":common_flags_gpu",
|
|
|
|
":common_flags_images",
|
2016-09-14 15:05:17 +00:00
|
|
|
":experimental_svg_model",
|
2016-07-28 21:17:33 +00:00
|
|
|
":flags",
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
2019-03-25 18:00:12 +00:00
|
|
|
":trace",
|
2019-05-30 20:12:56 +00:00
|
|
|
"modules/skparagraph:bench",
|
2019-06-12 14:20:44 +00:00
|
|
|
"modules/sksg",
|
2019-05-30 20:12:56 +00:00
|
|
|
"modules/skshaper",
|
2016-07-28 21:17:33 +00:00
|
|
|
]
|
|
|
|
}
|
2016-08-03 22:08:04 +00:00
|
|
|
|
2017-01-31 14:49:18 +00:00
|
|
|
test_app("skpinfo") {
|
|
|
|
sources = [
|
|
|
|
"tools/skpinfo.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-05-28 20:11:03 +00:00
|
|
|
if (skia_use_ffmpeg) {
|
|
|
|
test_app("skottie2movie") {
|
|
|
|
sources = [
|
|
|
|
"tools/skottie2movie.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
":video_decoder",
|
|
|
|
"modules/skottie",
|
2019-05-30 14:10:50 +00:00
|
|
|
"modules/skottie:utils",
|
2019-05-28 20:11:03 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
test_app("skpbench") {
|
|
|
|
sources = [
|
|
|
|
"tools/skpbench/skpbench.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
2019-03-25 15:54:59 +00:00
|
|
|
":common_flags_config",
|
|
|
|
":common_flags_gpu",
|
2018-05-31 17:17:12 +00:00
|
|
|
":flags",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
2016-09-19 18:03:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("sktexttopdf") {
|
2016-09-10 14:01:53 +00:00
|
|
|
sources = [
|
2018-05-29 19:53:40 +00:00
|
|
|
"tools/using_skia_and_harfbuzz.cpp",
|
2016-09-10 14:01:53 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
2018-05-29 19:53:40 +00:00
|
|
|
"modules/skshaper",
|
2016-09-10 14:01:53 +00:00
|
|
|
]
|
|
|
|
}
|
2016-09-16 17:23:12 +00:00
|
|
|
|
2017-07-17 19:32:25 +00:00
|
|
|
test_app("create_test_font") {
|
|
|
|
sources = [
|
2018-02-20 22:06:07 +00:00
|
|
|
"tools/fonts/create_test_font.cpp",
|
2017-07-17 19:32:25 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
assert_no_deps = [
|
|
|
|
# tool_utils requires the output of this app.
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-07-31 20:38:43 +00:00
|
|
|
if (skia_use_expat) {
|
|
|
|
test_app("create_test_font_color") {
|
|
|
|
sources = [
|
|
|
|
"tools/fonts/create_test_font_color.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
2018-02-15 15:20:04 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("get_images_from_skps") {
|
2016-09-16 17:23:12 +00:00
|
|
|
sources = [
|
|
|
|
"tools/get_images_from_skps.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
2016-09-22 18:51:24 +00:00
|
|
|
|
2018-12-10 16:56:01 +00:00
|
|
|
if (!is_ios && target_cpu != "wasm" && !(is_win && target_cpu == "arm64")) {
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("skiaserve") {
|
2016-11-03 18:06:31 +00:00
|
|
|
sources = [
|
|
|
|
"tools/skiaserve/Request.cpp",
|
|
|
|
"tools/skiaserve/Response.cpp",
|
|
|
|
"tools/skiaserve/skiaserve.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/BreakHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/CmdHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/DataHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/DownloadHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/ImgHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/InfoHandler.cpp",
|
2016-12-20 21:48:59 +00:00
|
|
|
"tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/OpsHandler.cpp",
|
2016-11-03 18:06:31 +00:00
|
|
|
"tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/PostHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/QuitHandler.cpp",
|
|
|
|
"tools/skiaserve/urlhandlers/RootHandler.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
"//third_party/libmicrohttpd",
|
|
|
|
]
|
|
|
|
}
|
2016-09-22 18:51:24 +00:00
|
|
|
}
|
2016-10-03 18:49:45 +00:00
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("fuzz") {
|
2016-10-03 18:49:45 +00:00
|
|
|
sources = [
|
2018-09-17 18:46:57 +00:00
|
|
|
"fuzz/Fuzz.cpp",
|
2017-02-14 18:35:14 +00:00
|
|
|
"fuzz/FuzzCanvas.cpp",
|
2018-03-09 19:02:46 +00:00
|
|
|
"fuzz/FuzzCommon.cpp",
|
2016-11-22 18:57:18 +00:00
|
|
|
"fuzz/FuzzDrawFunctions.cpp",
|
2018-03-30 19:05:13 +00:00
|
|
|
"fuzz/FuzzEncoders.cpp",
|
2016-10-03 18:49:45 +00:00
|
|
|
"fuzz/FuzzGradients.cpp",
|
2018-09-17 18:46:57 +00:00
|
|
|
"fuzz/FuzzMain.cpp",
|
2016-10-03 18:49:45 +00:00
|
|
|
"fuzz/FuzzParsePath.cpp",
|
2018-03-09 19:02:46 +00:00
|
|
|
"fuzz/FuzzPathMeasure.cpp",
|
2016-10-03 18:49:45 +00:00
|
|
|
"fuzz/FuzzPathop.cpp",
|
2018-07-11 18:09:09 +00:00
|
|
|
"fuzz/FuzzPolyUtils.cpp",
|
2018-04-06 14:25:12 +00:00
|
|
|
"fuzz/FuzzRegionOp.cpp",
|
2018-10-16 19:52:17 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzAndroidCodec.cpp",
|
2018-02-12 13:26:39 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
|
|
|
|
"fuzz/oss_fuzz/FuzzImage.cpp",
|
2018-02-08 19:31:24 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
|
2018-10-16 19:52:17 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzIncrementalImage.cpp",
|
2018-06-19 15:27:20 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzJSON.cpp",
|
2018-02-08 19:31:24 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
|
2018-01-11 15:27:14 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
|
|
|
|
"fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
|
2019-03-11 15:09:40 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp",
|
|
|
|
"fuzz/oss_fuzz/FuzzSKSL2Metal.cpp",
|
2019-03-18 20:20:55 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp",
|
2019-03-11 15:09:40 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp",
|
2018-02-08 19:31:24 +00:00
|
|
|
"fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
|
2018-01-09 17:47:33 +00:00
|
|
|
"tools/UrlDataManager.cpp",
|
2019-03-20 16:59:00 +00:00
|
|
|
"tools/debugger/DebugCanvas.cpp",
|
|
|
|
"tools/debugger/DrawCommand.cpp",
|
|
|
|
"tools/debugger/JsonWriteBuffer.cpp",
|
2016-10-03 18:49:45 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
2017-03-15 15:39:06 +00:00
|
|
|
":gpu_tool_utils",
|
2016-10-03 18:49:45 +00:00
|
|
|
":skia",
|
2018-05-26 13:49:28 +00:00
|
|
|
"modules/skottie:fuzz",
|
2016-10-03 18:49:45 +00:00
|
|
|
]
|
|
|
|
}
|
2016-10-05 19:41:01 +00:00
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("pathops_unittest") {
|
2016-10-27 16:21:40 +00:00
|
|
|
sources = pathops_tests_sources + [
|
2016-10-26 15:41:47 +00:00
|
|
|
rebase_path("tests/skia_test.cpp"),
|
|
|
|
rebase_path("tests/Test.cpp"),
|
|
|
|
]
|
2016-10-25 15:58:26 +00:00
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("dump_record") {
|
2016-10-05 19:41:01 +00:00
|
|
|
sources = [
|
|
|
|
"tools/DumpRecord.cpp",
|
|
|
|
"tools/dump_record.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
2016-10-13 21:36:40 +00:00
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("skdiff") {
|
2016-10-13 21:36:40 +00:00
|
|
|
sources = [
|
|
|
|
"tools/skdiff/skdiff.cpp",
|
|
|
|
"tools/skdiff/skdiff_html.cpp",
|
|
|
|
"tools/skdiff/skdiff_main.cpp",
|
|
|
|
"tools/skdiff/skdiff_utils.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
2016-10-17 20:19:02 +00:00
|
|
|
|
2017-01-05 15:54:57 +00:00
|
|
|
test_app("skp_parser") {
|
2016-10-17 20:19:02 +00:00
|
|
|
sources = [
|
|
|
|
"tools/skp_parser.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
2016-10-18 18:42:44 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (!is_win) {
|
2017-12-11 22:46:26 +00:00
|
|
|
test_lib("skqp_lib") {
|
2018-02-08 18:06:56 +00:00
|
|
|
defines =
|
|
|
|
[ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
|
2017-10-11 20:00:31 +00:00
|
|
|
sources = [
|
|
|
|
"dm/DMGpuTestProcs.cpp",
|
2018-11-26 19:07:41 +00:00
|
|
|
"tools/skqp/src/skqp.cpp",
|
|
|
|
"tools/skqp/src/skqp_model.cpp",
|
2017-10-11 20:00:31 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
":tests",
|
2017-12-11 22:46:26 +00:00
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_app("skqp") {
|
|
|
|
sources = [
|
2018-11-26 19:07:41 +00:00
|
|
|
"tools/skqp/src/skqp_main.cpp",
|
2017-12-11 22:46:26 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":skqp_lib",
|
2018-01-30 16:30:48 +00:00
|
|
|
":tool_utils",
|
2018-11-26 19:07:41 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
test_app("jitter_gms") {
|
|
|
|
sources = [
|
|
|
|
"tools/skqp/jitter_gms.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":gm",
|
|
|
|
":skia",
|
|
|
|
":skqp_lib",
|
2017-10-11 20:00:31 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2018-05-31 17:17:12 +00:00
|
|
|
if (is_android) {
|
2017-12-12 14:42:14 +00:00
|
|
|
test_app("skqp_app") {
|
|
|
|
is_shared_library = true
|
|
|
|
sources = [
|
2018-11-26 19:07:41 +00:00
|
|
|
"tools/skqp/src/jni_skqp.cpp",
|
2017-12-12 14:42:14 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":skqp_lib",
|
2018-01-29 18:10:08 +00:00
|
|
|
":tool_utils",
|
2017-12-12 14:42:14 +00:00
|
|
|
]
|
|
|
|
libs = [ "android" ]
|
|
|
|
}
|
|
|
|
}
|
2018-08-02 15:10:52 +00:00
|
|
|
if (is_android && skia_enable_gpu) {
|
|
|
|
test_app("skottie_android") {
|
|
|
|
is_shared_library = true
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"platform_tools/android/apps/skottie/src/main/cpp/JavaInputStreamAdaptor.cpp",
|
|
|
|
"platform_tools/android/apps/skottie/src/main/cpp/native-lib.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
"modules/skottie",
|
2018-10-01 19:36:32 +00:00
|
|
|
"modules/sksg:samples",
|
2018-08-02 15:10:52 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 20:00:31 +00:00
|
|
|
|
2018-01-19 18:08:23 +00:00
|
|
|
test_app("list_gms") {
|
|
|
|
sources = [
|
|
|
|
"tools/list_gms.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":gm",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_app("list_gpu_unit_tests") {
|
|
|
|
sources = [
|
|
|
|
"dm/DMGpuTestProcs.cpp",
|
|
|
|
"tools/list_gpu_unit_tests.cpp",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":tests",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
test_lib("sk_app") {
|
2019-04-26 12:20:14 +00:00
|
|
|
public_deps = [
|
|
|
|
":gpu_tool_utils",
|
2019-05-03 21:14:21 +00:00
|
|
|
":skia",
|
2019-04-26 12:20:14 +00:00
|
|
|
]
|
2018-05-31 17:17:12 +00:00
|
|
|
sources = [
|
|
|
|
"tools/sk_app/CommandSet.cpp",
|
|
|
|
"tools/sk_app/GLWindowContext.cpp",
|
|
|
|
"tools/sk_app/Window.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
if (is_android) {
|
|
|
|
sources += [
|
|
|
|
"tools/sk_app/android/GLWindowContext_android.cpp",
|
|
|
|
"tools/sk_app/android/RasterWindowContext_android.cpp",
|
|
|
|
"tools/sk_app/android/Window_android.cpp",
|
|
|
|
"tools/sk_app/android/main_android.cpp",
|
|
|
|
"tools/sk_app/android/surface_glue_android.cpp",
|
2016-10-18 18:42:44 +00:00
|
|
|
]
|
2018-05-31 17:17:12 +00:00
|
|
|
libs += [ "android" ]
|
|
|
|
} else if (is_linux) {
|
|
|
|
sources += [
|
|
|
|
"tools/sk_app/unix/GLWindowContext_unix.cpp",
|
|
|
|
"tools/sk_app/unix/RasterWindowContext_unix.cpp",
|
|
|
|
"tools/sk_app/unix/Window_unix.cpp",
|
|
|
|
"tools/sk_app/unix/keysym2ucs.c",
|
|
|
|
"tools/sk_app/unix/main_unix.cpp",
|
|
|
|
]
|
|
|
|
libs += [
|
|
|
|
"GL",
|
|
|
|
"X11",
|
|
|
|
]
|
|
|
|
} else if (is_win) {
|
|
|
|
sources += [
|
|
|
|
"tools/sk_app/win/GLWindowContext_win.cpp",
|
|
|
|
"tools/sk_app/win/RasterWindowContext_win.cpp",
|
|
|
|
"tools/sk_app/win/Window_win.cpp",
|
|
|
|
"tools/sk_app/win/main_win.cpp",
|
|
|
|
]
|
|
|
|
if (skia_use_angle) {
|
|
|
|
sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
|
|
|
|
}
|
|
|
|
} else if (is_mac) {
|
|
|
|
sources += [
|
2019-01-28 19:46:04 +00:00
|
|
|
"tools/sk_app/mac/GLWindowContext_mac.mm",
|
|
|
|
"tools/sk_app/mac/RasterWindowContext_mac.mm",
|
|
|
|
"tools/sk_app/mac/Window_mac.mm",
|
|
|
|
"tools/sk_app/mac/main_mac.mm",
|
2018-05-31 17:17:12 +00:00
|
|
|
]
|
|
|
|
libs += [
|
|
|
|
"QuartzCore.framework",
|
|
|
|
"Cocoa.framework",
|
|
|
|
"Foundation.framework",
|
|
|
|
]
|
|
|
|
} else if (is_ios) {
|
|
|
|
sources += [
|
|
|
|
"tools/sk_app/ios/GLWindowContext_ios.cpp",
|
|
|
|
"tools/sk_app/ios/RasterWindowContext_ios.cpp",
|
|
|
|
"tools/sk_app/ios/Window_ios.cpp",
|
|
|
|
"tools/sk_app/ios/main_ios.cpp",
|
|
|
|
]
|
|
|
|
}
|
2016-10-18 18:42:44 +00:00
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (skia_use_vulkan) {
|
|
|
|
sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
|
2016-10-21 14:58:52 +00:00
|
|
|
if (is_android) {
|
2018-05-31 17:17:12 +00:00
|
|
|
sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
|
2016-10-21 14:58:52 +00:00
|
|
|
} else if (is_linux) {
|
2018-05-31 17:17:12 +00:00
|
|
|
sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
|
|
|
|
libs += [ "X11-xcb" ]
|
2016-10-18 19:33:53 +00:00
|
|
|
} else if (is_win) {
|
2018-05-31 17:17:12 +00:00
|
|
|
sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
|
2019-02-14 19:07:46 +00:00
|
|
|
} else if (is_mac) {
|
|
|
|
sources += [ "tools/sk_app/mac/VulkanWindowContext_mac.mm" ]
|
|
|
|
libs += [ "MetalKit.framework" ]
|
2016-10-18 18:42:44 +00:00
|
|
|
}
|
2018-05-31 17:17:12 +00:00
|
|
|
}
|
2016-10-18 18:42:44 +00:00
|
|
|
|
2019-02-08 20:36:14 +00:00
|
|
|
if (skia_use_metal) {
|
|
|
|
sources += [ "tools/sk_app/MetalWindowContext.mm" ]
|
|
|
|
if (is_mac) {
|
|
|
|
sources += [ "tools/sk_app/mac/MetalWindowContext_mac.mm" ]
|
|
|
|
}
|
|
|
|
libs += [ "MetalKit.framework" ]
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
deps = [
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
if (is_android) {
|
|
|
|
deps += [ "//third_party/native_app_glue" ]
|
2019-01-28 19:46:04 +00:00
|
|
|
} else if (is_ios) {
|
2018-05-31 17:17:12 +00:00
|
|
|
deps += [ "//third_party/libsdl" ]
|
|
|
|
}
|
|
|
|
if (skia_use_angle) {
|
|
|
|
deps += [ "//third_party/angle2" ]
|
2016-12-08 14:49:39 +00:00
|
|
|
}
|
2016-10-18 18:42:44 +00:00
|
|
|
}
|
2016-11-14 16:16:37 +00:00
|
|
|
|
2019-03-15 18:22:51 +00:00
|
|
|
if (!skia_use_vulkan && (is_mac || is_linux || is_win)) {
|
|
|
|
test_app("fiddle_examples") {
|
|
|
|
sources = [
|
2019-04-10 18:08:44 +00:00
|
|
|
"tools/fiddle/all_examples.cpp",
|
2019-03-15 18:22:51 +00:00
|
|
|
"tools/fiddle/examples.cpp",
|
2019-03-17 15:09:17 +00:00
|
|
|
"tools/fiddle/examples.h",
|
2019-03-15 18:22:51 +00:00
|
|
|
]
|
2019-03-17 15:09:17 +00:00
|
|
|
if (is_win) {
|
|
|
|
cflags = [ "/wd4756" ] # Overflow in constant arithmetic
|
|
|
|
}
|
2019-03-15 18:22:51 +00:00
|
|
|
deps = [
|
|
|
|
":skia",
|
|
|
|
":skia.h",
|
|
|
|
"modules/skottie",
|
2019-03-25 21:38:43 +00:00
|
|
|
"modules/skshaper",
|
2019-03-15 18:22:51 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2018-05-31 17:17:12 +00:00
|
|
|
test_app("viewer") {
|
|
|
|
is_shared_library = is_android
|
|
|
|
sources = [
|
2019-07-11 20:32:53 +00:00
|
|
|
"tools/viewer/AnimTimer.h",
|
2018-05-31 17:17:12 +00:00
|
|
|
"tools/viewer/BisectSlide.cpp",
|
|
|
|
"tools/viewer/GMSlide.cpp",
|
|
|
|
"tools/viewer/ImGuiLayer.cpp",
|
|
|
|
"tools/viewer/ImageSlide.cpp",
|
Experimental Particle System
This adds a new "Particles" slide to viewer, that allows
editing, loading, and saving particle effects. All of the
particle system code is in modules/particles.
There are many rough edges and some not-yet-finished changes
to generalize the model[1]. A rough overview:
- SkReflected.h implements a lightweight reflection system
for classes derived from SkReflected. Adding a new class
involves deriving from SkReflected, adding a macro to the
class declaration, and implementing visitFields(), which
simply calls a virtual on an SkFieldVisitor for each field.
Currently, emitters and affectors use this mechanism.
- SkParticleSerialization.h demonstrates two useful field
visitors - for serializing to and from JSON. The driver
code that uses those is directly in ParticlesSlide.
- SkParticleData.h and SkCurve.h define a variety of helper
types for talking about particles, both for parameterizing
individual values, and communicating about the state of a
particle among the effect, affectors, and emitters.
- SkParticleEffect.h defines the static data definition of
an effect (SkParticleEffectParams), as well as a running
instance of an effect (SkParticleEffect). The effect has
simple update() and draw() methods.
- ParticlesSlide.cpp adds a third field visitor to generate
GUIs for interactively editing the running effect.
---
1: The critical change I'd like to make is to remove all
special case behavior over time and at spawn (setting sprite
frames, size over time, color over time, etc...). Integration
is the only fixed function behavior. Everything else is driven
by two lists of affectors. One is applied at spawn time, using
the effect's lifetime to evaluate curves. This allows spawning
particles with different colors as the effect ages out, for
example. The second list is applied every frame to update
existing particles, and is driven by the particle's lifetime.
This allows particles to change color after being spawned, for
example.
With a small set of affectors using a single expressive curve
primitive (keyframed list of cubic curve segments), we can
have affectors that update color, size, velocity, position,
sprite frame, etc., and implement many complex behaviors.
Bug: skia:
Change-Id: Id9402bef22825d55d021c5a2f9e5e41791aabaf4
Reviewed-on: https://skia-review.googlesource.com/c/181404
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Mike Reed <reed@google.com>
2019-02-12 18:27:51 +00:00
|
|
|
"tools/viewer/ParticlesSlide.cpp",
|
2018-05-31 17:17:12 +00:00
|
|
|
"tools/viewer/SKPSlide.cpp",
|
|
|
|
"tools/viewer/SampleSlide.cpp",
|
|
|
|
"tools/viewer/SkottieSlide.cpp",
|
|
|
|
"tools/viewer/SlideDir.cpp",
|
|
|
|
"tools/viewer/StatsLayer.cpp",
|
|
|
|
"tools/viewer/SvgSlide.cpp",
|
2018-08-08 15:36:17 +00:00
|
|
|
"tools/viewer/TouchGesture.cpp",
|
Switch SkCodec to use skcms
Bug: skia:6839
Bug: skia:8052
Create an skcms_Profile instead of an SkColorSpace when creating an
SkCodec. Eventually we'll move the SkImageInfo (and its SkColorSpace)
entirely to clients (e.g. SkAndroidCodec, SkCodecImageGenerator), but
for now, create it with SkEncodedInfo::makeImageInfo.
Create new SkEncodedInfo::Colors for the special PNG cases that we
want to map to specific SkColorTypes.
SkEncodedInfo:
- Add ICCProfile, which owns an skcms_ICCProfile
- FIXME: maybe we should have a single instance for
SRGB like SkColorSpace?
- Add kXAlpha_Color, for kAlpha_8. Since I'm not longer creating
an SkImageInfo (at least in SkPngCodec), it needs a way to pass
this info to the caller.
- Add k565_Color, for the same reason. Matt originally had this in
https://codereview.chromium.org/2212563003/#ps120001, but didn't
land that version. I like it though. Mike didn't like the bits
per component for 565, but it seems like a sensible hack, much
like the existing one for kAlpha_8
- Add width and height. These were removed for redundancy with
SkImageInfo, but it makes sense to have them here without it.
BUILD.gn:
- Build the new SkEncodedInfo.cpp
SkCodec:
- Remove the constructor with an SkImageInfo. Edit the other one
to drop width and height (now in SkEncodedInfo) and take a RHS
reference to SkEncodedInfo
- Create the SkImageInfo from fEncodedInfo (for now)
- Consolidate choosing skcms_AlphaFormat for Transform here
- Call conversionSupported from initializeColorXform, with a new
parameter for whether there is a color Xform, allowing SkJpegCodec
and SkHeifCodec to override that method instead of having another
method.
SkBmpCodec (etc)
- Adapt to the changes above
- Create a new SkEncodedInfo w/o profile for the swizzler.
SkPngCodec:
- use the new SkEncodedInfo::Colors rather than a custom SkImageInfo
SkRawCodec:
- Remove SkEncodedInfo from SkDngImage, which doesn't actually need it.
This is helpful since we don't know all the info yet.
- Rewrite gAdobeRGB_toXYZD50 as an skcms_Matrix3x3
SkWebpCodec:
- Remove premul_step computation, and simplify to just rely on
the base class' handling of applying the transform.
SkSwizzler:
- Add cases for the new SkEncodedInfo::Colors
TBR=reed@google.com
No public API changes. Only private/public members of SkCodec.h are
modified.
Change-Id: Ic0d3bb752b03f13be886b80331987aa5a5713fc0
Reviewed-on: https://skia-review.googlesource.com/136062
Commit-Queue: Leon Scroggins <scroggo@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2018-08-22 15:18:08 +00:00
|
|
|
"tools/viewer/TouchGesture.h",
|
2018-05-31 17:17:12 +00:00
|
|
|
"tools/viewer/Viewer.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
deps = [
|
2019-03-25 15:54:59 +00:00
|
|
|
":common_flags_gpu",
|
2018-05-31 17:17:12 +00:00
|
|
|
":experimental_svg_model",
|
|
|
|
":flags",
|
|
|
|
":gm",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":samples",
|
|
|
|
":sk_app",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
2019-03-25 18:00:12 +00:00
|
|
|
":trace",
|
Experimental Particle System
This adds a new "Particles" slide to viewer, that allows
editing, loading, and saving particle effects. All of the
particle system code is in modules/particles.
There are many rough edges and some not-yet-finished changes
to generalize the model[1]. A rough overview:
- SkReflected.h implements a lightweight reflection system
for classes derived from SkReflected. Adding a new class
involves deriving from SkReflected, adding a macro to the
class declaration, and implementing visitFields(), which
simply calls a virtual on an SkFieldVisitor for each field.
Currently, emitters and affectors use this mechanism.
- SkParticleSerialization.h demonstrates two useful field
visitors - for serializing to and from JSON. The driver
code that uses those is directly in ParticlesSlide.
- SkParticleData.h and SkCurve.h define a variety of helper
types for talking about particles, both for parameterizing
individual values, and communicating about the state of a
particle among the effect, affectors, and emitters.
- SkParticleEffect.h defines the static data definition of
an effect (SkParticleEffectParams), as well as a running
instance of an effect (SkParticleEffect). The effect has
simple update() and draw() methods.
- ParticlesSlide.cpp adds a third field visitor to generate
GUIs for interactively editing the running effect.
---
1: The critical change I'd like to make is to remove all
special case behavior over time and at spawn (setting sprite
frames, size over time, color over time, etc...). Integration
is the only fixed function behavior. Everything else is driven
by two lists of affectors. One is applied at spawn time, using
the effect's lifetime to evaluate curves. This allows spawning
particles with different colors as the effect ages out, for
example. The second list is applied every frame to update
existing particles, and is driven by the particle's lifetime.
This allows particles to change color after being spawned, for
example.
With a small set of affectors using a single expressive curve
primitive (keyframed list of cubic curve segments), we can
have affectors that update color, size, velocity, position,
sprite frame, etc., and implement many complex behaviors.
Bug: skia:
Change-Id: Id9402bef22825d55d021c5a2f9e5e41791aabaf4
Reviewed-on: https://skia-review.googlesource.com/c/181404
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Mike Reed <reed@google.com>
2019-02-12 18:27:51 +00:00
|
|
|
"modules/particles",
|
2018-05-31 17:17:12 +00:00
|
|
|
"modules/skottie",
|
2018-11-09 21:19:44 +00:00
|
|
|
"modules/skottie:utils",
|
2018-05-31 17:17:12 +00:00
|
|
|
"modules/sksg",
|
2018-08-08 15:36:17 +00:00
|
|
|
"modules/sksg:samples",
|
2018-05-31 17:17:12 +00:00
|
|
|
"//third_party/imgui",
|
|
|
|
]
|
2019-06-12 14:20:44 +00:00
|
|
|
if (skia_use_experimental_xform) {
|
|
|
|
deps += [ ":experimental_xform" ]
|
|
|
|
sources += [ "gm/xform.cpp" ]
|
|
|
|
}
|
2017-11-21 18:18:02 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (!skia_use_angle && (is_linux || is_win || is_mac)) {
|
2017-11-21 18:18:02 +00:00
|
|
|
test_app("HelloWorld") {
|
|
|
|
sources = [
|
|
|
|
"example/HelloWorld.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":flags",
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":sk_app",
|
|
|
|
":skia",
|
|
|
|
":tool_utils",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:17:12 +00:00
|
|
|
if (is_linux || is_mac || is_ios) {
|
2017-07-11 16:03:01 +00:00
|
|
|
test_app("SkiaSDLExample") {
|
|
|
|
sources = [
|
|
|
|
"example/SkiaSDLExample.cpp",
|
|
|
|
]
|
|
|
|
libs = []
|
|
|
|
deps = [
|
|
|
|
":gpu_tool_utils",
|
|
|
|
":skia",
|
|
|
|
"//third_party/libsdl",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:17:03 +00:00
|
|
|
if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
|
|
|
|
action_foreach("generate_mocs") {
|
|
|
|
script = "gn/call.py"
|
|
|
|
sources = [
|
|
|
|
"tools/mdbviz/MainWindow.h",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
|
|
|
|
]
|
|
|
|
args = [
|
|
|
|
"$skia_qt_path" + "/bin/moc",
|
|
|
|
"{{source}}",
|
|
|
|
"-o",
|
|
|
|
"gen/mdbviz/{{source_name_part}}_moc.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
action_foreach("generate_resources") {
|
|
|
|
script = "gn/call.py"
|
|
|
|
sources = [
|
|
|
|
"tools/mdbviz/resources.qrc",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
|
|
|
|
]
|
|
|
|
args = [
|
|
|
|
"$skia_qt_path" + "/bin/rcc",
|
|
|
|
"{{source}}",
|
|
|
|
"-o",
|
|
|
|
"gen/mdbviz/{{source_name_part}}_res.cpp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
test_app("mdbviz") {
|
|
|
|
if (is_win) {
|
|
|
|
# on Windows we need to disable some exception handling warnings due to the Qt headers
|
|
|
|
cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
|
|
|
|
}
|
|
|
|
sources = [
|
2017-09-05 19:10:12 +00:00
|
|
|
"tools/UrlDataManager.cpp",
|
2019-03-20 16:59:00 +00:00
|
|
|
"tools/debugger/DebugCanvas.cpp",
|
|
|
|
"tools/debugger/DrawCommand.cpp",
|
|
|
|
"tools/debugger/JsonWriteBuffer.cpp",
|
2017-09-01 16:17:03 +00:00
|
|
|
"tools/mdbviz/MainWindow.cpp",
|
2017-09-06 17:07:21 +00:00
|
|
|
"tools/mdbviz/Model.cpp",
|
2017-09-01 16:17:03 +00:00
|
|
|
"tools/mdbviz/main.cpp",
|
|
|
|
|
|
|
|
# generated files
|
|
|
|
"$target_gen_dir/mdbviz/MainWindow_moc.cpp",
|
|
|
|
"$target_gen_dir/mdbviz/resources_res.cpp",
|
|
|
|
]
|
|
|
|
lib_dirs = [ "$skia_qt_path/lib" ]
|
|
|
|
libs = [
|
|
|
|
"Qt5Core.lib",
|
|
|
|
"Qt5Gui.lib",
|
|
|
|
"Qt5Widgets.lib",
|
|
|
|
]
|
|
|
|
include_dirs = [
|
|
|
|
"$skia_qt_path/include",
|
2017-09-06 21:17:44 +00:00
|
|
|
"$skia_qt_path/include/QtCore",
|
2017-09-01 16:17:03 +00:00
|
|
|
"$skia_qt_path/include/QtWidgets",
|
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":generate_mocs",
|
|
|
|
":generate_resources",
|
|
|
|
":skia",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-03 14:21:30 +00:00
|
|
|
if (is_android && defined(ndk) && ndk != "") {
|
2017-01-05 16:39:04 +00:00
|
|
|
copy("gdbserver") {
|
|
|
|
sources = [
|
|
|
|
"$ndk/$ndk_gdbserver",
|
|
|
|
]
|
|
|
|
outputs = [
|
|
|
|
"$root_out_dir/gdbserver",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2018-06-20 18:05:05 +00:00
|
|
|
|
|
|
|
if (skia_use_opencl) {
|
|
|
|
test_app("hello-opencl") {
|
|
|
|
sources = [
|
|
|
|
"tools/hello-opencl.cpp",
|
|
|
|
]
|
2019-02-11 16:59:41 +00:00
|
|
|
deps = [
|
|
|
|
"//third_party/opencl",
|
|
|
|
]
|
2018-06-20 18:05:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-24 17:56:16 +00:00
|
|
|
|
|
|
|
test_app("editor") {
|
|
|
|
is_shared_library = is_android
|
|
|
|
sources = [
|
2019-04-28 18:40:45 +00:00
|
|
|
"experimental/editor/editor.cpp",
|
|
|
|
"experimental/editor/editor.h",
|
2019-05-03 21:14:21 +00:00
|
|
|
"experimental/editor/editor_application.cpp",
|
2019-04-30 16:38:28 +00:00
|
|
|
"experimental/editor/run_handler.cpp",
|
|
|
|
"experimental/editor/run_handler.h",
|
2019-05-03 21:14:21 +00:00
|
|
|
"experimental/editor/stringslice.cpp",
|
|
|
|
"experimental/editor/stringslice.h",
|
2019-04-24 17:56:16 +00:00
|
|
|
]
|
|
|
|
deps = [
|
|
|
|
":sk_app",
|
|
|
|
":skia",
|
|
|
|
"modules/skshaper",
|
|
|
|
]
|
|
|
|
}
|
tool support for SkVM JIT on aarch64
- Add quick-building skvmtool
- Remove SkString dependency
- Add aarch64 support for perf dumps
Here's what I see on now for the tiny skvmtool program:
x86-64 (Xeon Gold 6154)
│ skvm-jit-1707131987():
24.93 │ 0: vmovups (%rsi),%ymm0
50.13 │ vpmulld %ymm0,%ymm0,%ymm0
24.93 │ vmovups %ymm0,(%rsi)
│ add $0x20,%rsi
│ sub $0x8,%rdi
│ ↑ jne 0
│ vzeroupper
│ ← retq
aarch64 (Cortex A53)
│ skvm-jit-485593645():
11.55 │ 0: ldr q0, [x1]
47.65 │ mul v0.4s, v0.4s, v0.4s
31.77 │ str q0, [x1]
│ add x1, x1, #0x10
8.66 │ subs x0, x0, #0x4
│ ↑ b.ne 0
0.36 │ ← ret
Change-Id: Ia83ebdc6d96c8bd367bce0e8f2792b5e5c79f750
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/225186
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2019-07-02 19:16:26 +00:00
|
|
|
|
2019-07-02 20:21:11 +00:00
|
|
|
if (skia_enable_skvm_jit) {
|
tool support for SkVM JIT on aarch64
- Add quick-building skvmtool
- Remove SkString dependency
- Add aarch64 support for perf dumps
Here's what I see on now for the tiny skvmtool program:
x86-64 (Xeon Gold 6154)
│ skvm-jit-1707131987():
24.93 │ 0: vmovups (%rsi),%ymm0
50.13 │ vpmulld %ymm0,%ymm0,%ymm0
24.93 │ vmovups %ymm0,(%rsi)
│ add $0x20,%rsi
│ sub $0x8,%rdi
│ ↑ jne 0
│ vzeroupper
│ ← retq
aarch64 (Cortex A53)
│ skvm-jit-485593645():
11.55 │ 0: ldr q0, [x1]
47.65 │ mul v0.4s, v0.4s, v0.4s
31.77 │ str q0, [x1]
│ add x1, x1, #0x10
8.66 │ subs x0, x0, #0x4
│ ↑ b.ne 0
0.36 │ ← ret
Change-Id: Ia83ebdc6d96c8bd367bce0e8f2792b5e5c79f750
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/225186
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2019-07-02 19:16:26 +00:00
|
|
|
test_app("skvmtool") {
|
|
|
|
defines = [
|
|
|
|
"SKVM_JIT",
|
|
|
|
"SKVM_PERF_DUMPS",
|
|
|
|
]
|
|
|
|
include_dirs = [ "." ]
|
|
|
|
sources = [
|
|
|
|
"src/core/SkSpinlock.cpp",
|
|
|
|
"src/core/SkThreadID.cpp",
|
|
|
|
"src/core/SkVM.cpp",
|
2019-07-23 16:46:09 +00:00
|
|
|
"tools/SkVMBuilders.cpp",
|
tool support for SkVM JIT on aarch64
- Add quick-building skvmtool
- Remove SkString dependency
- Add aarch64 support for perf dumps
Here's what I see on now for the tiny skvmtool program:
x86-64 (Xeon Gold 6154)
│ skvm-jit-1707131987():
24.93 │ 0: vmovups (%rsi),%ymm0
50.13 │ vpmulld %ymm0,%ymm0,%ymm0
24.93 │ vmovups %ymm0,(%rsi)
│ add $0x20,%rsi
│ sub $0x8,%rdi
│ ↑ jne 0
│ vzeroupper
│ ← retq
aarch64 (Cortex A53)
│ skvm-jit-485593645():
11.55 │ 0: ldr q0, [x1]
47.65 │ mul v0.4s, v0.4s, v0.4s
31.77 │ str q0, [x1]
│ add x1, x1, #0x10
8.66 │ subs x0, x0, #0x4
│ ↑ b.ne 0
0.36 │ ← ret
Change-Id: Ia83ebdc6d96c8bd367bce0e8f2792b5e5c79f750
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/225186
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2019-07-02 19:16:26 +00:00
|
|
|
"tools/SkVMTool.cpp",
|
|
|
|
]
|
|
|
|
if (target_cpu == "x64") {
|
|
|
|
sources += [ "src/core/SkCpu.cpp" ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-27 20:55:26 +00:00
|
|
|
}
|