Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Side by Side Diff: build/config/BUILD.gn

Issue 1442523002: Get rid of the use_glib gn variable. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698