BUILD.gn 460 B

123456789101112131415161718
  1. # Copyright 2015 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("libwebm_config") {
  5. include_dirs = [ "./source" ]
  6. }
  7. static_library("libwebm") {
  8. configs += [ ":libwebm_config" ]
  9. public_configs = [ ":libwebm_config" ]
  10. sources = [
  11. "source/mkvmuxer/mkvmuxer.cc",
  12. "source/mkvmuxer/mkvmuxerutil.cc",
  13. "source/mkvmuxer/mkvwriter.cc",
  14. ]
  15. }