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

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

Issue 2498733002: Remove some global UI defines (Closed)
Patch Set: Merge Created 4 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
« no previous file with comments | « no previous file | build/config/ui.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chromecast_build.gni") 7 import("//build/config/chromecast_build.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/dcheck_always_on.gni") 9 import("//build/config/dcheck_always_on.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 93 }
94 if (use_aura) { 94 if (use_aura) {
95 defines += [ "USE_AURA=1" ] 95 defines += [ "USE_AURA=1" ]
96 } 96 }
97 if (use_pango) { 97 if (use_pango) {
98 defines += [ "USE_PANGO=1" ] 98 defines += [ "USE_PANGO=1" ]
99 } 99 }
100 if (use_cairo) { 100 if (use_cairo) {
101 defines += [ "USE_CAIRO=1" ] 101 defines += [ "USE_CAIRO=1" ]
102 } 102 }
103 if (use_clipboard_aurax11) {
104 defines += [ "USE_CLIPBOARD_AURAX11=1" ]
105 }
106 if (use_default_render_theme) {
107 defines += [ "USE_DEFAULT_RENDER_THEME=1" ]
108 }
109 if (use_glib) { 103 if (use_glib) {
110 defines += [ "USE_GLIB=1" ] 104 defines += [ "USE_GLIB=1" ]
111 } 105 }
112 if (use_openssl_certs) { 106 if (use_openssl_certs) {
113 defines += [ "USE_OPENSSL_CERTS=1" ] 107 defines += [ "USE_OPENSSL_CERTS=1" ]
114 } 108 }
115 if (use_nss_certs) { 109 if (use_nss_certs) {
116 defines += [ "USE_NSS_CERTS=1" ] 110 defines += [ "USE_NSS_CERTS=1" ]
117 } 111 }
118 if (use_ozone) { 112 if (use_ozone) {
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 # file doesn't exist, no error will be generated (probably MS tested this 424 # file doesn't exist, no error will be generated (probably MS tested this
431 # case but forgot the other one?). To reproduce this error, do a build, 425 # case but forgot the other one?). To reproduce this error, do a build,
432 # then delete the precompile.c.obj file, then build again. 426 # then delete the precompile.c.obj file, then build again.
433 cflags_c = [ "/wd4206" ] 427 cflags_c = [ "/wd4206" ]
434 } else if (is_mac) { 428 } else if (is_mac) {
435 precompiled_header = "build/precompile.h" 429 precompiled_header = "build/precompile.h"
436 precompiled_source = "//build/precompile.h" 430 precompiled_source = "//build/precompile.h"
437 } 431 }
438 } 432 }
439 } 433 }
OLDNEW
« no previous file with comments | « no previous file | build/config/ui.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698