| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 | 10 |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 204 } |
| 205 if (enable_google_now) { | 205 if (enable_google_now) { |
| 206 defines += [ "ENABLE_GOOGLE_NOW=1" ] | 206 defines += [ "ENABLE_GOOGLE_NOW=1" ] |
| 207 } | 207 } |
| 208 if (enable_one_click_signin) { | 208 if (enable_one_click_signin) { |
| 209 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] | 209 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] |
| 210 } | 210 } |
| 211 if (enable_hidpi) { | 211 if (enable_hidpi) { |
| 212 defines += [ "ENABLE_HIDPI=1" ] | 212 defines += [ "ENABLE_HIDPI=1" ] |
| 213 } | 213 } |
| 214 if (enable_topchrome_md) { |
| 215 defines += [ "ENABLE_TOPCHRME_MD=1" ] |
| 216 } |
| 214 if (proprietary_codecs) { | 217 if (proprietary_codecs) { |
| 215 defines += [ "USE_PROPRIETARY_CODECS" ] | 218 defines += [ "USE_PROPRIETARY_CODECS" ] |
| 216 } | 219 } |
| 217 if (enable_hangout_services_extension) { | 220 if (enable_hangout_services_extension) { |
| 218 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] | 221 defines += [ "ENABLE_HANGOUT_SERVICES_EXTENSION=1" ] |
| 219 } | 222 } |
| 220 if (v8_use_external_startup_data) { | 223 if (v8_use_external_startup_data) { |
| 221 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ] | 224 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ] |
| 222 } | 225 } |
| 223 if (enable_background) { | 226 if (enable_background) { |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 "CoreFoundation.framework", | 341 "CoreFoundation.framework", |
| 339 "CoreGraphics.framework", | 342 "CoreGraphics.framework", |
| 340 "CoreText.framework", | 343 "CoreText.framework", |
| 341 "Foundation.framework", | 344 "Foundation.framework", |
| 342 "UIKit.framework", | 345 "UIKit.framework", |
| 343 ] | 346 ] |
| 344 } else if (is_linux) { | 347 } else if (is_linux) { |
| 345 libs = [ "dl" ] | 348 libs = [ "dl" ] |
| 346 } | 349 } |
| 347 } | 350 } |
| OLD | NEW |