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

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

Issue 1327853002: GN: Fix compilation with NaCl toolchain (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 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
« no previous file with comments | « webrtc/BUILD.gn ('k') | no next file » | 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) 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 libs = [ 120 libs = [
121 "AppKit.framework", 121 "AppKit.framework",
122 "IOKit.framework", 122 "IOKit.framework",
123 "OpenGL.framework", 123 "OpenGL.framework",
124 ] 124 ]
125 } 125 }
126 126
127 configs += [ "../..:common_config" ] 127 configs += [ "../..:common_config" ]
128 public_configs = [ "../..:common_inherited_config" ] 128 public_configs = [ "../..:common_inherited_config" ]
129 129
130 if (is_clang) { 130 if (is_clang && !is_nacl) {
131 # Suppress warnings from Chrome's Clang plugins. 131 # Suppress warnings from Chrome's Clang plugins.
132 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 132 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
133 configs -= [ "//build/config/clang:find_bad_constructs" ] 133 configs -= [ "//build/config/clang:find_bad_constructs" ]
134 } 134 }
135 135
136 deps = [ 136 deps = [
137 ":primitives", 137 ":primitives",
138 "../../base:rtc_base_approved", 138 "../../base:rtc_base_approved",
139 "../../system_wrappers", 139 "../../system_wrappers",
140 ] 140 ]
(...skipping 14 matching lines...) Expand all
155 ] 155 ]
156 156
157 configs += [ "../..:common_config" ] 157 configs += [ "../..:common_config" ]
158 public_configs = [ "../..:common_inherited_config" ] 158 public_configs = [ "../..:common_inherited_config" ]
159 159
160 if (is_posix && !is_mac) { 160 if (is_posix && !is_mac) {
161 cflags = [ "-msse2" ] 161 cflags = [ "-msse2" ]
162 } 162 }
163 } 163 }
164 } 164 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698