Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: gyp/libpng.gyp

Issue 930283002: Add SkCodec, including PNG implementation. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Make SkPngCodec work on Mac! Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gyp/libpng.gyp
diff --git a/gyp/libpng.gyp b/gyp/libpng.gyp
index 92ff8d5e77cdf4a6acc98092096af7ef63af4318..7bb0c420915cafadb6043d4681347b346dc27009 100644
--- a/gyp/libpng.gyp
+++ b/gyp/libpng.gyp
@@ -32,10 +32,25 @@
'-w',
'-fvisibility=hidden',
],
+ 'actions': [
+ {
+ 'action_name': 'generate_pngconf',
+ 'variables' : {
+ 'prebuilt': '../third_party/externals/libpng/scripts/pnglibconf.h.prebuilt',
+ 'generated': '../third_party/externals/libpng/pnglibconf.h',
+ },
+ 'inputs': [
+ '<(prebuilt)',
+ ],
+ 'outputs': [
+ '<(generated)',
+ ],
+ 'action': ['cp', '<(prebuilt)', '<(generated)'],
+ },
+ ],
'sources': [
'../third_party/externals/libpng/png.c',
'../third_party/externals/libpng/pngerror.c',
- '../third_party/externals/libpng/pnggccrd.c',
'../third_party/externals/libpng/pngget.c',
'../third_party/externals/libpng/pngmem.c',
'../third_party/externals/libpng/pngpread.c',
@@ -45,7 +60,6 @@
'../third_party/externals/libpng/pngrutil.c',
'../third_party/externals/libpng/pngset.c',
'../third_party/externals/libpng/pngtrans.c',
- '../third_party/externals/libpng/pngvcrd.c',
'../third_party/externals/libpng/pngwio.c',
'../third_party/externals/libpng/pngwrite.c',
'../third_party/externals/libpng/pngwtran.c',
« gyp/codec.gyp ('K') | « gyp/common_variables.gypi ('k') | gyp/skia_lib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698