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

Side by Side Diff: talk/libjingle_tests.gyp

Issue 1554223002: Move fake-handle frame creation into test target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: kjellander@ review Created 4 years, 11 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 | « no previous file | webrtc/common_video/common_video_unittests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # libjingle 2 # libjingle
3 # Copyright 2012 Google Inc. 3 # Copyright 2012 Google Inc.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met: 6 # modification, are permitted provided that the following conditions are met:
7 # 7 #
8 # 1. Redistributions of source code must retain the above copyright notice, 8 # 1. Redistributions of source code must retain the above copyright notice,
9 # this list of conditions and the following disclaimer. 9 # this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright notice, 10 # 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'msvs_settings': { 132 'msvs_settings': {
133 'VCCLCompilerTool': { 133 'VCCLCompilerTool': {
134 'AdditionalOptions': [ 134 'AdditionalOptions': [
135 # Disable warnings failing when compiling with Clang on Windows. 135 # Disable warnings failing when compiling with Clang on Windows.
136 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 136 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
137 '-Wno-unused-function', 137 '-Wno-unused-function',
138 ], 138 ],
139 }, 139 },
140 }, 140 },
141 },], 141 },],
142 ['clang==1', {
143 # Disabled due to failing when compiled with -Wall, see
144 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5398
145 'cflags': [
146 '-Wno-unused-function',
147 ],
148 'xcode_settings': {
149 'WARNING_CFLAGS': ['-Wno-unused-function'],
150 },
151 },],
152 ['OS=="ios"', { 142 ['OS=="ios"', {
153 'sources!': [ 143 'sources!': [
154 'media/sctp/sctpdataengine_unittest.cc', 144 'media/sctp/sctpdataengine_unittest.cc',
155 ], 145 ],
156 }], 146 }],
157 ], 147 ],
158 }, # target libjingle_media_unittest 148 }, # target libjingle_media_unittest
159 { 149 {
160 'target_name': 'libjingle_p2p_unittest', 150 'target_name': 'libjingle_p2p_unittest',
161 'type': 'executable', 151 'type': 'executable',
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 'build/isolate.gypi', 453 'build/isolate.gypi',
464 ], 454 ],
465 'sources': [ 455 'sources': [
466 'libjingle_peerconnection_unittest.isolate', 456 'libjingle_peerconnection_unittest.isolate',
467 ], 457 ],
468 }, 458 },
469 ], 459 ],
470 }], 460 }],
471 ], 461 ],
472 } 462 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_video/common_video_unittests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698