| 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 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 | 10 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 defines += [ "USE_CLIPBOARD_AURAX11=1" ] | 115 defines += [ "USE_CLIPBOARD_AURAX11=1" ] |
| 116 } | 116 } |
| 117 if (use_default_render_theme) { | 117 if (use_default_render_theme) { |
| 118 defines += [ "USE_DEFAULT_RENDER_THEME=1" ] | 118 defines += [ "USE_DEFAULT_RENDER_THEME=1" ] |
| 119 } | 119 } |
| 120 if (use_glib) { | 120 if (use_glib) { |
| 121 defines += [ "USE_GLIB=1" ] | 121 defines += [ "USE_GLIB=1" ] |
| 122 } | 122 } |
| 123 if (use_openssl) { | 123 if (use_openssl) { |
| 124 defines += [ "USE_OPENSSL=1" ] | 124 defines += [ "USE_OPENSSL=1" ] |
| 125 if (use_openssl_certs) { | 125 } |
| 126 defines += [ "USE_OPENSSL_CERTS=1" ] | 126 if (use_openssl_certs) { |
| 127 } | 127 defines += [ "USE_OPENSSL_CERTS=1" ] |
| 128 } else if (use_nss_certs) { | 128 } |
| 129 if (use_nss_certs) { |
| 129 defines += [ "USE_NSS_CERTS=1" ] | 130 defines += [ "USE_NSS_CERTS=1" ] |
| 130 } | 131 } |
| 131 if (use_ozone) { | 132 if (use_ozone) { |
| 132 defines += [ "USE_OZONE=1" ] | 133 defines += [ "USE_OZONE=1" ] |
| 133 } | 134 } |
| 134 if (use_x11) { | 135 if (use_x11) { |
| 135 defines += [ "USE_X11=1" ] | 136 defines += [ "USE_X11=1" ] |
| 136 } | 137 } |
| 137 if (use_allocator != "tcmalloc") { | 138 if (use_allocator != "tcmalloc") { |
| 138 defines += [ "NO_TCMALLOC" ] | 139 defines += [ "NO_TCMALLOC" ] |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "CoreFoundation.framework", | 338 "CoreFoundation.framework", |
| 338 "CoreGraphics.framework", | 339 "CoreGraphics.framework", |
| 339 "CoreText.framework", | 340 "CoreText.framework", |
| 340 "Foundation.framework", | 341 "Foundation.framework", |
| 341 "UIKit.framework", | 342 "UIKit.framework", |
| 342 ] | 343 ] |
| 343 } else if (is_linux) { | 344 } else if (is_linux) { |
| 344 libs = [ "dl" ] | 345 libs = [ "dl" ] |
| 345 } | 346 } |
| 346 } | 347 } |
| OLD | NEW |