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

Side by Side Diff: webrtc/modules/desktop_capture/BUILD.gn

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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "AppKit.framework", 138 "AppKit.framework",
139 "IOKit.framework", 139 "IOKit.framework",
140 "OpenGL.framework", 140 "OpenGL.framework",
141 ] 141 ]
142 } 142 }
143 143
144 if (is_win) { 144 if (is_win) {
145 libs = [ 145 libs = [
146 "d3d11.lib", 146 "d3d11.lib",
147 "dxgi.lib", 147 "dxgi.lib",
148 "shcore.lib",
148 ] 149 ]
149 } 150 }
150 151
151 if (is_clang && !is_nacl) { 152 if (is_clang && !is_nacl) {
152 # Suppress warnings from Chrome's Clang plugins. 153 # Suppress warnings from Chrome's Clang plugins.
153 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 154 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
154 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 155 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
155 } 156 }
156 157
157 deps = [ 158 deps = [
(...skipping 15 matching lines...) Expand all
173 sources = [ 174 sources = [
174 "differ_vector_sse2.cc", 175 "differ_vector_sse2.cc",
175 "differ_vector_sse2.h", 176 "differ_vector_sse2.h",
176 ] 177 ]
177 178
178 if (is_posix) { 179 if (is_posix) {
179 cflags = [ "-msse2" ] 180 cflags = [ "-msse2" ]
180 } 181 }
181 } 182 }
182 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698