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

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

Issue 2561013002: Remove the enable_themes build flag and define. (Closed)
Patch Set: Merge Created 4 years 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/features.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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 if (is_ubsan || is_ubsan_null || is_ubsan_vptr || is_ubsan_security) { 130 if (is_ubsan || is_ubsan_null || is_ubsan_vptr || is_ubsan_security) {
131 defines += [ "UNDEFINED_SANITIZER" ] 131 defines += [ "UNDEFINED_SANITIZER" ]
132 } 132 }
133 if (use_external_popup_menu) { 133 if (use_external_popup_menu) {
134 defines += [ "USE_EXTERNAL_POPUP_MENU=1" ] 134 defines += [ "USE_EXTERNAL_POPUP_MENU=1" ]
135 } 135 }
136 if (!enable_nacl) { 136 if (!enable_nacl) {
137 defines += [ "DISABLE_NACL" ] 137 defines += [ "DISABLE_NACL" ]
138 } 138 }
139 if (enable_themes) {
140 defines += [ "ENABLE_THEMES=1" ]
141 }
142 if (enable_rlz) { 139 if (enable_rlz) {
143 defines += [ "ENABLE_RLZ" ] 140 defines += [ "ENABLE_RLZ" ]
144 } 141 }
145 if (enable_wayland_server) { 142 if (enable_wayland_server) {
146 defines += [ "ENABLE_WAYLAND_SERVER=1" ] 143 defines += [ "ENABLE_WAYLAND_SERVER=1" ]
147 } 144 }
148 if (proprietary_codecs) { 145 if (proprietary_codecs) {
149 defines += [ "USE_PROPRIETARY_CODECS" ] 146 defines += [ "USE_PROPRIETARY_CODECS" ]
150 } 147 }
151 if (safe_browsing_mode == 1) { 148 if (safe_browsing_mode == 1) {
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 # 399 #
403 # TODO(sof): determine VS2015 status and retire the setting from all 400 # TODO(sof): determine VS2015 status and retire the setting from all
404 # precompiled configurations. 401 # precompiled configurations.
405 cflags_c = [ "/wd4206" ] 402 cflags_c = [ "/wd4206" ]
406 } else if (is_mac) { 403 } else if (is_mac) {
407 precompiled_header = "build/precompile.h" 404 precompiled_header = "build/precompile.h"
408 precompiled_source = "//build/precompile.h" 405 precompiled_source = "//build/precompile.h"
409 } 406 }
410 } 407 }
411 } 408 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698