OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 | 9 |
10 declare_args() { | 10 declare_args() { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 } | 197 } |
198 if (use_athena) { | 198 if (use_athena) { |
199 defines += [ "USE_ATHENA=1" ] | 199 defines += [ "USE_ATHENA=1" ] |
200 } | 200 } |
201 if (enable_hidpi) { | 201 if (enable_hidpi) { |
202 defines += [ "ENABLE_HIDPI=1" ] | 202 defines += [ "ENABLE_HIDPI=1" ] |
203 } | 203 } |
204 if (proprietary_codecs) { | 204 if (proprietary_codecs) { |
205 defines += [ "USE_PROPRIETARY_CODECS" ] | 205 defines += [ "USE_PROPRIETARY_CODECS" ] |
206 } | 206 } |
| 207 if (enable_hangout_services_extension) { |
| 208 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] |
| 209 } |
207 } | 210 } |
208 | 211 |
209 # Debug/release ---------------------------------------------------------------- | 212 # Debug/release ---------------------------------------------------------------- |
210 | 213 |
211 config("debug") { | 214 config("debug") { |
212 defines = [ | 215 defines = [ |
213 "_DEBUG", | 216 "_DEBUG", |
214 "DYNAMIC_ANNOTATIONS_ENABLED=1", | 217 "DYNAMIC_ANNOTATIONS_ENABLED=1", |
215 "WTF_USE_DYNAMIC_ANNOTATIONS=1", | 218 "WTF_USE_DYNAMIC_ANNOTATIONS=1", |
216 ] | 219 ] |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 "CoreText.framework", | 306 "CoreText.framework", |
304 "Foundation.framework", | 307 "Foundation.framework", |
305 "UIKit.framework", | 308 "UIKit.framework", |
306 ] | 309 ] |
307 } else if (is_linux) { | 310 } else if (is_linux) { |
308 libs = [ | 311 libs = [ |
309 "dl", | 312 "dl", |
310 ] | 313 ] |
311 } | 314 } |
312 } | 315 } |
OLD | NEW |