| 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 import("audio_coding.gni") | 10 import("audio_coding.gni") |
| (...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1533 ] | 1533 ] |
| 1534 | 1534 |
| 1535 if (is_win) { | 1535 if (is_win) { |
| 1536 cflags = [ | 1536 cflags = [ |
| 1537 # Disable warnings to enable Win64 build, issue 1323. | 1537 # Disable warnings to enable Win64 build, issue 1323. |
| 1538 "/wd4267", # size_t to int truncation | 1538 "/wd4267", # size_t to int truncation |
| 1539 ] | 1539 ] |
| 1540 } | 1540 } |
| 1541 } | 1541 } |
| 1542 | 1542 |
| 1543 executable("isac_test") { |
| 1544 testonly = true |
| 1545 |
| 1546 sources = [ |
| 1547 "codecs/isac/main/test/simpleKenny.c", |
| 1548 "codecs/isac/main/util/utility.c", |
| 1549 ] |
| 1550 |
| 1551 include_dirs = [ |
| 1552 "codecs/isac/main/include", |
| 1553 "codecs/isac/main/test", |
| 1554 "codecs/isac/main/util", |
| 1555 ] |
| 1556 |
| 1557 deps = [ |
| 1558 ":isac", |
| 1559 "../../base:rtc_base", |
| 1560 "//build/config/sanitizers:deps", |
| 1561 ] |
| 1562 |
| 1563 if (is_win && is_clang) { |
| 1564 cflags = [ |
| 1565 # Disable warnings failing when compiling with Clang on Windows. |
| 1566 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
| 1567 "-Wno-format", |
| 1568 ] |
| 1569 } |
| 1570 } |
| 1571 |
| 1543 executable("g711_test") { | 1572 executable("g711_test") { |
| 1544 testonly = true | 1573 testonly = true |
| 1545 | 1574 |
| 1546 sources = [ | 1575 sources = [ |
| 1547 "codecs/g711/test/testG711.cc", | 1576 "codecs/g711/test/testG711.cc", |
| 1548 ] | 1577 ] |
| 1549 | 1578 |
| 1550 configs += [ "../..:common_config" ] | 1579 configs += [ "../..:common_config" ] |
| 1551 public_configs = [ "../..:common_inherited_config" ] | 1580 public_configs = [ "../..:common_inherited_config" ] |
| 1552 | 1581 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1564 | 1593 |
| 1565 configs += [ "../..:common_config" ] | 1594 configs += [ "../..:common_config" ] |
| 1566 public_configs = [ "../..:common_inherited_config" ] | 1595 public_configs = [ "../..:common_inherited_config" ] |
| 1567 | 1596 |
| 1568 deps = [ | 1597 deps = [ |
| 1569 ":g722", | 1598 ":g722", |
| 1570 "../..:webrtc_common", | 1599 "../..:webrtc_common", |
| 1571 ] | 1600 ] |
| 1572 } | 1601 } |
| 1573 } | 1602 } |
| OLD | NEW |