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

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: Enabled more unit tests 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/testfile32kHz.pcm',
350 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm',
351 ],
352 }],
347 ], 353 ],
348 # Disable warnings to enable Win64 build, issue 1323. 354 # Disable warnings to enable Win64 build, issue 1323.
349 'msvs_disabled_warnings': [ 355 'msvs_disabled_warnings': [
350 4267, # size_t to int truncation. 356 4267, # size_t to int truncation.
351 ], 357 ],
352 }, 358 },
353 { 359 {
354 'target_name': 'modules_tests', 360 'target_name': 'modules_tests',
355 'type': '<(gtest_target_type)', 361 'type': '<(gtest_target_type)',
356 'dependencies': [ 362 'dependencies': [
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 'sources': [ 457 'sources': [
452 'modules_unittests.isolate', 458 'modules_unittests.isolate',
453 ], 459 ],
454 }, 460 },
455 ], 461 ],
456 }], 462 }],
457 ], 463 ],
458 }], # include_tests 464 }], # include_tests
459 ], # conditions 465 ], # conditions
460 } 466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698