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

Side by Side Diff: webrtc/modules/modules.gyp

Issue 1178843002: Adds support for webrtc::test::ResourcePath on iOS (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed namespace Created 5 years, 6 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
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 '-Wno-ignored-qualifiers', 337 '-Wno-ignored-qualifiers',
338 ], 338 ],
339 'sources': [ 339 'sources': [
340 'audio_device/android/audio_device_unittest.cc', 340 'audio_device/android/audio_device_unittest.cc',
341 'audio_device/android/audio_manager_unittest.cc', 341 'audio_device/android/audio_manager_unittest.cc',
342 'audio_device/android/ensure_initialized.cc', 342 'audio_device/android/ensure_initialized.cc',
343 'audio_device/android/ensure_initialized.h', 343 'audio_device/android/ensure_initialized.h',
344 'audio_device/android/fine_audio_buffer_unittest.cc', 344 'audio_device/android/fine_audio_buffer_unittest.cc',
345 ], 345 ],
346 }], 346 }],
347 ['OS=="ios"', {
348 'mac_bundle_resources': [
349 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm',
350 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
351 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm',
352 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer. dat',
353 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat',
354 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat',
355 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat',
356 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat',
357 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe r.dat',
358 '<(DEPTH)/resources/short_mixed_mono_48.dat',
359 '<(DEPTH)/resources/short_mixed_mono_48.pcm',
360 '<(DEPTH)/resources/short_mixed_stereo_48.dat',
361 '<(DEPTH)/resources/short_mixed_stereo_48.pcm',
362 ],
363 }],
347 ], 364 ],
348 # Disable warnings to enable Win64 build, issue 1323. 365 # Disable warnings to enable Win64 build, issue 1323.
349 'msvs_disabled_warnings': [ 366 'msvs_disabled_warnings': [
350 4267, # size_t to int truncation. 367 4267, # size_t to int truncation.
351 ], 368 ],
352 }, 369 },
353 { 370 {
354 'target_name': 'modules_tests', 371 'target_name': 'modules_tests',
355 'type': '<(gtest_target_type)', 372 'type': '<(gtest_target_type)',
356 'dependencies': [ 373 'dependencies': [
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 'sources': [ 468 'sources': [
452 'modules_unittests.isolate', 469 'modules_unittests.isolate',
453 ], 470 ],
454 }, 471 },
455 ], 472 ],
456 }], 473 }],
457 ], 474 ],
458 }], # include_tests 475 }], # include_tests
459 ], # conditions 476 ], # conditions
460 } 477 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698