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

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

Issue 1188713007: Moved --top-chrome-md command line switch from chrome_switches to ui_base_switches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed typo in build/config/BUILD.gn. Created 5 years, 5 months 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 if (enable_google_now) { 218 if (enable_google_now) {
219 defines += [ "ENABLE_GOOGLE_NOW=1" ] 219 defines += [ "ENABLE_GOOGLE_NOW=1" ]
220 } 220 }
221 if (enable_one_click_signin) { 221 if (enable_one_click_signin) {
222 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] 222 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ]
223 } 223 }
224 if (enable_hidpi) { 224 if (enable_hidpi) {
225 defines += [ "ENABLE_HIDPI=1" ] 225 defines += [ "ENABLE_HIDPI=1" ]
226 } 226 }
227 if (enable_topchrome_md) { 227 if (enable_topchrome_md) {
228 defines += [ "ENABLE_TOPCHRME_MD=1" ] 228 defines += [ "ENABLE_TOPCHROME_MD=1" ]
229 } 229 }
230 if (proprietary_codecs) { 230 if (proprietary_codecs) {
231 defines += [ "USE_PROPRIETARY_CODECS" ] 231 defines += [ "USE_PROPRIETARY_CODECS" ]
232 } 232 }
233 if (enable_hangout_services_extension) { 233 if (enable_hangout_services_extension) {
234 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] 234 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ]
235 } 235 }
236 if (v8_use_external_startup_data) { 236 if (v8_use_external_startup_data) {
237 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ] 237 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
238 } 238 }
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 "CoreFoundation.framework", 386 "CoreFoundation.framework",
387 "CoreGraphics.framework", 387 "CoreGraphics.framework",
388 "CoreText.framework", 388 "CoreText.framework",
389 "Foundation.framework", 389 "Foundation.framework",
390 "UIKit.framework", 390 "UIKit.framework",
391 ] 391 ]
392 } else if (is_linux) { 392 } else if (is_linux) {
393 libs = [ "dl" ] 393 libs = [ "dl" ]
394 } 394 }
395 } 395 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/config/ui.gni » ('j') | ui/base/ui_base_switches.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698