BUILD.gn 376 B

1234567891011121314151617
  1. # Copyright 2014 The Chromium 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. config("iccjpeg_config") {
  5. include_dirs = [ "." ]
  6. }
  7. static_library("iccjpeg") {
  8. sources = [
  9. "iccjpeg.c",
  10. "iccjpeg.h",
  11. ]
  12. public_configs = [ ":iccjpeg_config" ]
  13. deps = [ "//third_party:jpeg" ]
  14. }