Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit fb8415b

Browse files
committed
Move libpng to //flutter/third_party/libpng
1 parent d354c58 commit fb8415b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ deps = {
636636
'src/flutter/third_party/libjpeg-turbo/src':
637637
Var('flutter_git') + '/third_party/libjpeg-turbo' + '@' + '0fb821f3b2e570b2783a94ccd9a2fb1f4916ae9f',
638638

639-
'src/third_party/libpng':
639+
'src/flutter/third_party/libpng':
640640
Var('flutter_git') + '/third_party/libpng' + '@' + '9187b6e12756317f6d44fc669ac11dfc262bd192',
641641

642642
'src/flutter/third_party/libwebp':
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright 2013 The Flutter Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
group("libpng") {
6+
deps = [ "//flutter/third_party/libpng" ]
7+
public_configs = [ "//flutter/third_party/libpng:libpng_public" ]
8+
}

skia/BUILD.gn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ optional("png_decode") {
542542
"SK_CODEC_DECODES_ICO",
543543
]
544544

545-
deps = [ "//third_party/libpng" ]
545+
deps = [ "//flutter/third_party/libpng" ]
546546
sources = [
547547
"$_skia_root/src/codec/SkIcoCodec.cpp",
548548
"$_skia_root/src/codec/SkPngCodec.cpp",
@@ -553,7 +553,7 @@ optional("png_encode") {
553553
enabled = skia_use_libpng_encode && !skia_use_ndk_images
554554
public = skia_encode_png_public
555555

556-
deps = [ "//third_party/libpng" ]
556+
deps = [ "//flutter/third_party/libpng" ]
557557
sources = skia_encode_png_srcs
558558
}
559559

0 commit comments

Comments
 (0)