| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 defines += [ "DCHECK_ALWAYS_ON=1" ] | 54 defines += [ "DCHECK_ALWAYS_ON=1" ] |
| 55 } | 55 } |
| 56 if (use_udev) { | 56 if (use_udev) { |
| 57 # TODO(brettw) should probably be "=1". | 57 # TODO(brettw) should probably be "=1". |
| 58 defines += [ "USE_UDEV" ] | 58 defines += [ "USE_UDEV" ] |
| 59 } | 59 } |
| 60 if (ui_compositor_image_transport) { | 60 if (ui_compositor_image_transport) { |
| 61 # TODO(brettw) should probably be "=1". | 61 # TODO(brettw) should probably be "=1". |
| 62 defines += [ "UI_COMPOSITOR_IMAGE_TRANSPORT" ] | 62 defines += [ "UI_COMPOSITOR_IMAGE_TRANSPORT" ] |
| 63 } | 63 } |
| 64 if (use_ash) { | |
| 65 defines += [ "USE_ASH=1" ] | |
| 66 } | |
| 67 if (use_aura) { | 64 if (use_aura) { |
| 68 defines += [ "USE_AURA=1" ] | 65 defines += [ "USE_AURA=1" ] |
| 69 } | 66 } |
| 70 if (use_pango) { | |
| 71 defines += [ "USE_PANGO=1" ] | |
| 72 } | |
| 73 if (use_cairo) { | |
| 74 defines += [ "USE_CAIRO=1" ] | |
| 75 } | |
| 76 if (use_openssl) { | 67 if (use_openssl) { |
| 77 defines += [ "USE_OPENSSL=1" ] | 68 defines += [ "USE_OPENSSL=1" ] |
| 78 } | 69 } |
| 79 if (use_openssl_certs) { | 70 if (use_openssl_certs) { |
| 80 defines += [ "USE_OPENSSL_CERTS=1" ] | 71 defines += [ "USE_OPENSSL_CERTS=1" ] |
| 81 } | 72 } |
| 82 if (use_nss_certs) { | 73 if (use_nss_certs) { |
| 83 defines += [ "USE_NSS_CERTS=1" ] | 74 defines += [ "USE_NSS_CERTS=1" ] |
| 84 } | 75 } |
| 85 if (use_ozone) { | 76 if (use_ozone) { |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "CoreFoundation.framework", | 198 "CoreFoundation.framework", |
| 208 "CoreGraphics.framework", | 199 "CoreGraphics.framework", |
| 209 "CoreText.framework", | 200 "CoreText.framework", |
| 210 "Foundation.framework", | 201 "Foundation.framework", |
| 211 "UIKit.framework", | 202 "UIKit.framework", |
| 212 ] | 203 ] |
| 213 } else if (is_linux) { | 204 } else if (is_linux) { |
| 214 libs = [ "dl" ] | 205 libs = [ "dl" ] |
| 215 } | 206 } |
| 216 } | 207 } |
| OLD | NEW |