libyuv_nacl.gyp 963 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright 2014 The LibYuv Project Authors. All rights reserved.
  2. #
  3. # Use of this source code is governed by a BSD-style license
  4. # that can be found in the LICENSE file in the root of the source
  5. # tree. An additional intellectual property rights grant can be found
  6. # in the file PATENTS. All contributing project authors may
  7. # be found in the AUTHORS file in the root of the source tree.
  8. {
  9. 'includes': [
  10. 'libyuv.gypi',
  11. '../../native_client/build/untrusted.gypi',
  12. ],
  13. 'targets': [
  14. {
  15. 'target_name': 'libyuv_nacl',
  16. 'type': 'none',
  17. 'variables': {
  18. 'nlib_target': 'libyuv_nacl.a',
  19. 'build_glibc': 0,
  20. 'build_newlib': 0,
  21. 'build_pnacl_newlib': 1,
  22. },
  23. 'include_dirs': [
  24. 'include',
  25. ],
  26. 'direct_dependent_settings': {
  27. 'include_dirs': [
  28. 'include',
  29. ],
  30. },
  31. 'sources': [
  32. '<@(libyuv_sources)',
  33. ],
  34. }, # target libyuv_nacl
  35. ]
  36. }