blob: 969b9aba42e7188d0362c6be3f08ad799c0619a1 [file] [log] [blame]
# Copyright 2016 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("iccjpeg_config") {
include_dirs = [ "." ]
}
static_library("iccjpeg") {
sources = [
"iccjpeg.c",
"iccjpeg.h",
]
public_configs = [ ":iccjpeg_config" ]
deps = [
"//third_party/libjpeg-turbo:libjpeg",
]
}