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/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//build/module_args/v8.gni") | 10 import("//build/module_args/v8.gni") |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 } | 108 } |
109 if (use_cairo) { | 109 if (use_cairo) { |
110 defines += [ "USE_CAIRO=1" ] | 110 defines += [ "USE_CAIRO=1" ] |
111 } | 111 } |
112 if (use_clipboard_aurax11) { | 112 if (use_clipboard_aurax11) { |
113 defines += [ "USE_CLIPBOARD_AURAX11=1" ] | 113 defines += [ "USE_CLIPBOARD_AURAX11=1" ] |
114 } | 114 } |
115 if (use_default_render_theme) { | 115 if (use_default_render_theme) { |
116 defines += [ "USE_DEFAULT_RENDER_THEME=1" ] | 116 defines += [ "USE_DEFAULT_RENDER_THEME=1" ] |
117 } | 117 } |
118 if (use_glib) { | |
119 defines += [ "USE_GLIB=1" ] | |
120 } | |
121 if (use_openssl) { | 118 if (use_openssl) { |
122 defines += [ "USE_OPENSSL=1" ] | 119 defines += [ "USE_OPENSSL=1" ] |
123 } | 120 } |
124 if (use_openssl_certs) { | 121 if (use_openssl_certs) { |
125 defines += [ "USE_OPENSSL_CERTS=1" ] | 122 defines += [ "USE_OPENSSL_CERTS=1" ] |
126 } | 123 } |
127 if (use_nss_certs) { | 124 if (use_nss_certs) { |
128 defines += [ "USE_NSS_CERTS=1" ] | 125 defines += [ "USE_NSS_CERTS=1" ] |
129 } | 126 } |
130 if (use_ozone) { | 127 if (use_ozone) { |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 "CoreFoundation.framework", | 346 "CoreFoundation.framework", |
350 "CoreGraphics.framework", | 347 "CoreGraphics.framework", |
351 "CoreText.framework", | 348 "CoreText.framework", |
352 "Foundation.framework", | 349 "Foundation.framework", |
353 "UIKit.framework", | 350 "UIKit.framework", |
354 ] | 351 ] |
355 } else if (is_linux) { | 352 } else if (is_linux) { |
356 libs = [ "dl" ] | 353 libs = [ "dl" ] |
357 } | 354 } |
358 } | 355 } |
OLD | NEW |