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

Side by Side Diff: webrtc/modules/desktop_capture/desktop_capture.gypi

Issue 2345163002: Several minor improvements of DirectX capturer (Closed)
Patch Set: Created 4 years, 3 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) 2013 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2013 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 'targets': [ 10 'targets': [
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 }], 159 }],
160 ], 160 ],
161 'all_dependent_settings': { 161 'all_dependent_settings': {
162 'conditions': [ 162 'conditions': [
163 ['OS=="win"', { 163 ['OS=="win"', {
164 'msvs_settings': { 164 'msvs_settings': {
165 'VCLinkerTool': { 165 'VCLinkerTool': {
166 'AdditionalDependencies': [ 166 'AdditionalDependencies': [
167 'd3d11.lib', 167 'd3d11.lib',
168 'dxgi.lib', 168 'dxgi.lib',
169 'shcore.lib',
169 ], 170 ],
170 }, 171 },
171 }, 172 },
172 }], 173 }],
173 ], 174 ],
174 }, 175 },
175 }, 176 },
176 ], # targets 177 ], # targets
177 'conditions': [ 178 'conditions': [
178 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 179 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
(...skipping 13 matching lines...) Expand all
192 'xcode_settings': { 193 'xcode_settings': {
193 'OTHER_CFLAGS': [ '-msse2', ], 194 'OTHER_CFLAGS': [ '-msse2', ],
194 }, 195 },
195 }], 196 }],
196 ], 197 ],
197 }, 198 },
198 ], # targets 199 ], # targets
199 }], 200 }],
200 ], 201 ],
201 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698