| 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 |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "test/auto_test/fakes/loudest_filter.cc", | 286 "test/auto_test/fakes/loudest_filter.cc", |
| 287 "test/auto_test/fakes/loudest_filter.h", | 287 "test/auto_test/fakes/loudest_filter.h", |
| 288 "test/auto_test/fixtures/after_initialization_fixture.cc", | 288 "test/auto_test/fixtures/after_initialization_fixture.cc", |
| 289 "test/auto_test/fixtures/after_initialization_fixture.h", | 289 "test/auto_test/fixtures/after_initialization_fixture.h", |
| 290 "test/auto_test/fixtures/after_streaming_fixture.cc", | 290 "test/auto_test/fixtures/after_streaming_fixture.cc", |
| 291 "test/auto_test/fixtures/after_streaming_fixture.h", | 291 "test/auto_test/fixtures/after_streaming_fixture.h", |
| 292 "test/auto_test/fixtures/before_initialization_fixture.cc", | 292 "test/auto_test/fixtures/before_initialization_fixture.cc", |
| 293 "test/auto_test/fixtures/before_initialization_fixture.h", | 293 "test/auto_test/fixtures/before_initialization_fixture.h", |
| 294 "test/auto_test/fixtures/before_streaming_fixture.cc", | 294 "test/auto_test/fixtures/before_streaming_fixture.cc", |
| 295 "test/auto_test/fixtures/before_streaming_fixture.h", | 295 "test/auto_test/fixtures/before_streaming_fixture.h", |
| 296 "test/auto_test/resource_manager.cc", | |
| 297 "test/auto_test/standard/audio_processing_test.cc", | 296 "test/auto_test/standard/audio_processing_test.cc", |
| 298 "test/auto_test/standard/codec_before_streaming_test.cc", | 297 "test/auto_test/standard/codec_before_streaming_test.cc", |
| 299 "test/auto_test/standard/codec_test.cc", | 298 "test/auto_test/standard/codec_test.cc", |
| 300 "test/auto_test/standard/dtmf_test.cc", | 299 "test/auto_test/standard/dtmf_test.cc", |
| 301 "test/auto_test/standard/external_media_test.cc", | 300 "test/auto_test/standard/external_media_test.cc", |
| 302 "test/auto_test/standard/file_before_streaming_test.cc", | 301 "test/auto_test/standard/file_before_streaming_test.cc", |
| 303 "test/auto_test/standard/file_test.cc", | 302 "test/auto_test/standard/file_test.cc", |
| 304 "test/auto_test/standard/hardware_before_initializing_test.cc", | 303 "test/auto_test/standard/hardware_before_initializing_test.cc", |
| 305 "test/auto_test/standard/hardware_test.cc", | 304 "test/auto_test/standard/hardware_test.cc", |
| 306 "test/auto_test/standard/mixing_test.cc", | 305 "test/auto_test/standard/mixing_test.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ] | 344 ] |
| 346 } | 345 } |
| 347 | 346 |
| 348 if (!build_with_chromium && is_clang) { | 347 if (!build_with_chromium && is_clang) { |
| 349 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 348 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 350 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 349 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 351 } | 350 } |
| 352 } | 351 } |
| 353 } | 352 } |
| 354 } | 353 } |
| OLD | NEW |