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

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

Issue 1108333002: Compile-time and run-time flags for top chrome material design. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 } 220 }
221 if (enable_google_now) { 221 if (enable_google_now) {
222 defines += [ "ENABLE_GOOGLE_NOW=1" ] 222 defines += [ "ENABLE_GOOGLE_NOW=1" ]
223 } 223 }
224 if (enable_one_click_signin) { 224 if (enable_one_click_signin) {
225 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] 225 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ]
226 } 226 }
227 if (enable_hidpi) { 227 if (enable_hidpi) {
228 defines += [ "ENABLE_HIDPI=1" ] 228 defines += [ "ENABLE_HIDPI=1" ]
229 } 229 }
230 if (enable_topchrome_md) {
231 defines += [ "ENABLE_TOPCHRME_MD=1" ]
Dan Beam 2015/06/24 21:45:07 note: misspelled
232 }
230 if (proprietary_codecs) { 233 if (proprietary_codecs) {
231 defines += [ "USE_PROPRIETARY_CODECS" ] 234 defines += [ "USE_PROPRIETARY_CODECS" ]
232 } 235 }
233 if (enable_hangout_services_extension) { 236 if (enable_hangout_services_extension) {
234 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] 237 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ]
235 } 238 }
236 if (v8_use_external_startup_data) { 239 if (v8_use_external_startup_data) {
237 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ] 240 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
238 } 241 }
239 if (enable_background) { 242 if (enable_background) {
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 "CoreFoundation.framework", 389 "CoreFoundation.framework",
387 "CoreGraphics.framework", 390 "CoreGraphics.framework",
388 "CoreText.framework", 391 "CoreText.framework",
389 "Foundation.framework", 392 "Foundation.framework",
390 "UIKit.framework", 393 "UIKit.framework",
391 ] 394 ]
392 } else if (is_linux) { 395 } else if (is_linux) {
393 libs = [ "dl" ] 396 libs = [ "dl" ]
394 } 397 }
395 } 398 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/config/ui.gni » ('j') | chrome/common/chrome_switches.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698