| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| 11 source_set("video_render_module") { | 11 source_set("video_render_module") { |
| 12 sources = [ | 12 sources = [ |
| 13 "external/video_render_external_impl.cc", | 13 "external/video_render_external_impl.cc", |
| 14 "external/video_render_external_impl.h", | 14 "external/video_render_external_impl.h", |
| 15 "i_video_render.h", | 15 "i_video_render.h", |
| 16 "include/video_render.h", | 16 "video_render.h", |
| 17 "include/video_render_defines.h", | 17 "video_render_defines.h", |
| 18 "video_render_impl.h", | 18 "video_render_impl.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "../..:webrtc_common", | 22 "../..:webrtc_common", |
| 23 "../../common_video", | 23 "../../common_video", |
| 24 "../../system_wrappers", | 24 "../../system_wrappers", |
| 25 "../utility", | 25 "../utility", |
| 26 ] | 26 ] |
| 27 | 27 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 configs += [ "../..:common_config" ] | 169 configs += [ "../..:common_config" ] |
| 170 public_configs = [ "../..:common_inherited_config" ] | 170 public_configs = [ "../..:common_inherited_config" ] |
| 171 | 171 |
| 172 if (is_clang) { | 172 if (is_clang) { |
| 173 # Suppress warnings from Chrome's Clang plugins. | 173 # Suppress warnings from Chrome's Clang plugins. |
| 174 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 174 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 175 configs -= [ "//build/config/clang:find_bad_constructs" ] | 175 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 176 } | 176 } |
| 177 } | 177 } |
| 178 } | 178 } |
| OLD | NEW |