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

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

Issue 1178843002: Adds support for webrtc::test::ResourcePath on iOS (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: nits 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
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/test/testsupport/fileutils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # TODO(andrew): consider moving test_support to src/base/test. 9 # TODO(andrew): consider moving test_support to src/base/test.
10 { 10 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 117 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
118 ], 118 ],
119 'sources': [ 119 'sources': [
120 'testsupport/fileutils.cc', 120 'testsupport/fileutils.cc',
121 'testsupport/fileutils.h', 121 'testsupport/fileutils.h',
122 'testsupport/frame_reader.cc', 122 'testsupport/frame_reader.cc',
123 'testsupport/frame_reader.h', 123 'testsupport/frame_reader.h',
124 'testsupport/frame_writer.cc', 124 'testsupport/frame_writer.cc',
125 'testsupport/frame_writer.h', 125 'testsupport/frame_writer.h',
126 'testsupport/gtest_disable.h', 126 'testsupport/gtest_disable.h',
127 'testsupport/iosfileutils.mm',
127 'testsupport/mock/mock_frame_reader.h', 128 'testsupport/mock/mock_frame_reader.h',
128 'testsupport/mock/mock_frame_writer.h', 129 'testsupport/mock/mock_frame_writer.h',
129 'testsupport/packet_reader.cc', 130 'testsupport/packet_reader.cc',
130 'testsupport/packet_reader.h', 131 'testsupport/packet_reader.h',
131 'testsupport/perf_test.cc', 132 'testsupport/perf_test.cc',
132 'testsupport/perf_test.h', 133 'testsupport/perf_test.h',
133 'testsupport/trace_to_stderr.cc', 134 'testsupport/trace_to_stderr.cc',
134 'testsupport/trace_to_stderr.h', 135 'testsupport/trace_to_stderr.h',
135 ], 136 ],
137 'conditions': [
138 ['OS=="ios"', {
139 'xcode_settings': {
140 'CLANG_ENABLE_OBJC_ARC': 'YES',
141 },
142 }],
143 ],
136 }, 144 },
137 { 145 {
138 # Depend on this target when you want to have test_support but also the 146 # Depend on this target when you want to have test_support but also the
139 # main method needed for gtest to execute! 147 # main method needed for gtest to execute!
140 'target_name': 'test_support_main', 148 'target_name': 'test_support_main',
141 'type': 'static_library', 149 'type': 'static_library',
142 'dependencies': [ 150 'dependencies': [
143 'field_trial', 151 'field_trial',
144 'histogram', 152 'histogram',
145 'test_support', 153 'test_support',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 '../build/isolate.gypi', 236 '../build/isolate.gypi',
229 ], 237 ],
230 'sources': [ 238 'sources': [
231 'test_support_unittests.isolate', 239 'test_support_unittests.isolate',
232 ], 240 ],
233 }, 241 },
234 ], 242 ],
235 }], 243 }],
236 ], 244 ],
237 } 245 }
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/test/testsupport/fileutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698