OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |