Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(487)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2268213002: Added GN target for webrtc_opus_fec_test. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added rtc_base dependency to gyp file. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gn ('k') | webrtc/modules/audio_coding/codecs/opus/opus.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 ] 1592 ]
1593 1593
1594 configs += [ "../..:common_config" ] 1594 configs += [ "../..:common_config" ]
1595 public_configs = [ "../..:common_inherited_config" ] 1595 public_configs = [ "../..:common_inherited_config" ]
1596 1596
1597 deps = [ 1597 deps = [
1598 ":g722", 1598 ":g722",
1599 "../..:webrtc_common", 1599 "../..:webrtc_common",
1600 ] 1600 ]
1601 } 1601 }
1602
1603 executable("webrtc_opus_fec_test") {
1604 testonly = true
1605
1606 sources = [
1607 "codecs/opus/opus_fec_test.cc",
1608 ]
1609
1610 deps = [
1611 ":webrtc_opus",
1612 "../../base:rtc_base",
1613 "../../common_audio",
1614 "../../test:test_support",
1615 "../../test:test_support_main",
1616 "//build/config/sanitizers:deps",
1617 "//testing/gtest",
1618 ]
1619
1620 if (is_clang) {
1621 # Suppress warnings from Chrome's Clang plugins.
1622 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1623 configs -= [ "//build/config/clang:find_bad_constructs" ]
1624 }
1625 }
1602 } 1626 }
OLDNEW
« no previous file with comments | « .gn ('k') | webrtc/modules/audio_coding/codecs/opus/opus.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698