| OLD | NEW |
| 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 Loading... |
| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 "CoreFoundation.framework", | 389 "CoreFoundation.framework", |
| 390 "CoreGraphics.framework", | 390 "CoreGraphics.framework", |
| 391 "CoreText.framework", | 391 "CoreText.framework", |
| 392 "Foundation.framework", | 392 "Foundation.framework", |
| 393 "UIKit.framework", | 393 "UIKit.framework", |
| 394 ] | 394 ] |
| 395 } else if (is_linux) { | 395 } else if (is_linux) { |
| 396 libs = [ "dl" ] | 396 libs = [ "dl" ] |
| 397 } | 397 } |
| 398 } | 398 } |
| OLD | NEW |