diff options
Diffstat (limited to 'skia/BUILD.gn')
-rw-r--r-- | skia/BUILD.gn | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/skia/BUILD.gn b/skia/BUILD.gn index e55730f..029c830 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -128,14 +128,9 @@ config("skia_config") { "//third_party/skia/include/pipe", "//third_party/skia/include/ports", "//third_party/skia/include/utils", + + # need to move this to internal. see crbug.com/457691 "//third_party/skia/src/core", - "//third_party/skia/src/image", - "//third_party/skia/src/opts", - "//third_party/skia/src/pdf", - "//third_party/skia/src/ports", - "//third_party/skia/src/sfnt", - "//third_party/skia/src/utils", - "//third_party/skia/src/lazy", ] defines = gypi_blink_skia_defines.blink_skia_defines @@ -188,7 +183,15 @@ config("skia_library_config") { # These include directories are only included for Skia code and are not # exported to dependents. It's not clear if this is on purpose, but this # matches the GYP build. - include_dirs = [] + include_dirs = [ + "//third_party/skia/src/image", + "//third_party/skia/src/opts", + "//third_party/skia/src/pdf", + "//third_party/skia/src/ports", + "//third_party/skia/src/sfnt", + "//third_party/skia/src/utils", + "//third_party/skia/src/lazy", + ] if (is_mac || is_ios) { include_dirs += [ "//third_party/skia/include/utils/mac" ] } @@ -268,7 +271,7 @@ config("skia_library_config") { } if (is_win) { - include_dirs = [ + include_dirs += [ "//third_party/skia/include/utils/win", "//third_party/skia/src/utils/win", ] |