Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / video / BUILD.gn
1 # Copyright (c) 2014 The WebRTC 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 import("../build/webrtc.gni")
10
11 source_set("video") {
12   sources = [
13     "call.cc",
14     "encoded_frame_callback_adapter.cc",
15     "encoded_frame_callback_adapter.h",
16     "receive_statistics_proxy.cc",
17     "receive_statistics_proxy.h",
18     "send_statistics_proxy.cc",
19     "send_statistics_proxy.h",
20     "transport_adapter.cc",
21     "transport_adapter.h",
22     "video_receive_stream.cc",
23     "video_receive_stream.h",
24     "video_send_stream.cc",
25     "video_send_stream.h",
26   ]
27
28   configs += [ "..:common_inherited_config" ]
29
30   if (is_clang) {
31     # Suppress warnings from Chrome's Clang plugins.
32     # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
33     configs -= [ "//build/config/clang:find_bad_constructs" ]
34   }
35
36   deps = [ "../video_engine:video_engine_core" ]
37 }
38