Index: third_party/libexif/BUILD.gn |
diff --git a/third_party/libexif/BUILD.gn b/third_party/libexif/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ccf84f2d7905839b430c78d28880f04e8fb97ae4 |
--- /dev/null |
+++ b/third_party/libexif/BUILD.gn |
@@ -0,0 +1,63 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+# Linux should use system libexif |
+if (!is_linux || is_chromeos) { |
Lei Zhang
2015/01/14 23:17:41
Don't you need to handle the linux case as well? A
Slava Chigrin
2015/01/15 08:07:45
Done. Although I thought that chromium already com
|
+ config("libexif_config") { |
+ include_dirs = [ "sources" ] |
+ } |
+ |
+ static_library("libexif") { |
+ sources = [ |
+ "sources/libexif/exif-byte-order.c", |
+ "sources/libexif/exif-content.c", |
+ "sources/libexif/exif-data.c", |
+ "sources/libexif/exif-entry.c", |
+ "sources/libexif/exif-format.c", |
+ "sources/libexif/exif-ifd.c", |
+ "sources/libexif/exif-loader.c", |
+ "sources/libexif/exif-log.c", |
+ "sources/libexif/exif-mem.c", |
+ "sources/libexif/exif-mnote-data.c", |
+ "sources/libexif/exif-tag.c", |
+ "sources/libexif/exif-utils.c", |
+ "sources/libexif/canon/exif-mnote-data-canon.c", |
+ "sources/libexif/canon/mnote-canon-entry.c", |
+ "sources/libexif/canon/mnote-canon-tag.c", |
+ "sources/libexif/fuji/exif-mnote-data-fuji.c", |
+ "sources/libexif/fuji/mnote-fuji-entry.c", |
+ "sources/libexif/fuji/mnote-fuji-tag.c", |
+ "sources/libexif/olympus/exif-mnote-data-olympus.c", |
+ "sources/libexif/olympus/mnote-olympus-entry.c", |
+ "sources/libexif/olympus/mnote-olympus-tag.c", |
+ "sources/libexif/pentax/exif-mnote-data-pentax.c", |
+ "sources/libexif/pentax/mnote-pentax-entry.c", |
+ "sources/libexif/pentax/mnote-pentax-tag.c", |
+ ] |
+ |
+ include_dirs = [ "sources" ] |
+ |
+ #TODO(GYP): Additional options for non-Windows platforms. |
Slava Chigrin
2015/01/14 20:08:30
At present I am focused on making GN work on Windo
|
+ |
+ if (is_win) { |
+ defines = [ |
+ # This seems like a hack, but this is what WebKit Win does. |
Slava Chigrin
2015/01/14 20:08:30
Taken from GYP - see https://code.google.com/p/chr
|
+ "snprintf=_snprintf", |
+ "inline=__inline", |
+ ] |
+ |
+ ldflags = [ "/DEF:" + rebase_path("libexif.def") ] |
+ |
+ cflags = [ |
+ "/wd4018", # size/unsigned mismatch |
+ "/wd4267", # size_t -> ExifLong truncation on amd64 |
+ ] |
+ } |
+ |
+ configs -= [ "//build/config/compiler:chromium_code" ] |
+ configs += [ "//build/config/compiler:no_chromium_code" ] |
+ |
+ public_configs = [ ":libexif_config" ] |
+ } |
+} |