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

Side by Side Diff: media/cast/cast.gyp

Issue 1087873003: Fix errors found in Mac gn component builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try to fix sandbox_mac_unittests Created 5 years, 8 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 | « media/cast/BUILD.gn ('k') | sandbox/mac/BUILD.gn » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'include_tests%': 1, 7 'include_tests%': 1,
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'sender/vp8_encoder.cc', 192 'sender/vp8_encoder.cc',
193 'sender/vp8_encoder.h', 193 'sender/vp8_encoder.h',
194 ], 194 ],
195 }], # OS=="ios" 195 }], # OS=="ios"
196 # iOS and OS X encoders 196 # iOS and OS X encoders
197 ['OS=="ios" or OS=="mac"', { 197 ['OS=="ios" or OS=="mac"', {
198 'sources': [ 198 'sources': [
199 'sender/h264_vt_encoder.cc', 199 'sender/h264_vt_encoder.cc',
200 'sender/h264_vt_encoder.h', 200 'sender/h264_vt_encoder.h',
201 ], 201 ],
202 'link_settings': {
203 'libraries': [
204 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
205 ],
206 },
202 }], # OS=="ios" or OS=="mac" 207 }], # OS=="ios" or OS=="mac"
208 ['OS=="mac"', {
209 'link_settings': {
210 'libraries': [
211 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
212 ],
213 },
214 }], # OS=="mac"
203 ], # conditions 215 ], # conditions
204 }, 216 },
205 { 217 {
206 # GN version: //media/cast:net 218 # GN version: //media/cast:net
207 'target_name': 'cast_net', 219 'target_name': 'cast_net',
208 'type': 'static_library', 220 'type': 'static_library',
209 'include_dirs': [ 221 'include_dirs': [
210 '<(DEPTH)/', 222 '<(DEPTH)/',
211 ], 223 ],
212 'dependencies': [ 224 'dependencies': [
(...skipping 26 matching lines...) Expand all
239 'net/rtp/rtp_parser.cc', 251 'net/rtp/rtp_parser.cc',
240 'net/rtp/rtp_parser.h', 252 'net/rtp/rtp_parser.h',
241 'net/rtp/rtp_sender.cc', 253 'net/rtp/rtp_sender.cc',
242 'net/rtp/rtp_sender.h', 254 'net/rtp/rtp_sender.h',
243 'net/udp_transport.cc', 255 'net/udp_transport.cc',
244 'net/udp_transport.h', 256 'net/udp_transport.h',
245 ], # source 257 ], # source
246 }, 258 },
247 ], 259 ],
248 } 260 }
OLDNEW
« no previous file with comments | « media/cast/BUILD.gn ('k') | sandbox/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698