blob: 65d0c77dac862e8b3f223a586f1019de957d17f6 [file] [log] [blame]
mcasas09903b32015-07-14 16:20:471# 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
tomfinegan795f1a62016-04-29 03:36:545config("libwebm_config") {
6 include_dirs = [ "./source" ]
7}
8
brettw23302cf2016-07-15 00:54:129static_library("libwebm") {
tomfinegan795f1a62016-04-29 03:36:5410 configs += [ ":libwebm_config" ]
11 public_configs = [ ":libwebm_config" ]
12
13 if (!is_win) {
14 cflags = [ "-Wno-deprecated-declarations" ] # libwebm uses std::auto_ptr
15 }
16
mcasas09903b32015-07-14 16:20:4717 sources = [
tomfinegan795f1a62016-04-29 03:36:5418 "source/mkvmuxer/mkvmuxer.cc",
19 "source/mkvmuxer/mkvmuxerutil.cc",
20 "source/mkvmuxer/mkvwriter.cc",
mcasas09903b32015-07-14 16:20:4721 ]
22}