| 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 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 } | 128 } |
| 129 if (enable_configuration_policy) { | 129 if (enable_configuration_policy) { |
| 130 defines += [ "ENABLE_CONFIGURATION_POLICY" ] | 130 defines += [ "ENABLE_CONFIGURATION_POLICY" ] |
| 131 } | 131 } |
| 132 if (enable_task_manager) { | 132 if (enable_task_manager) { |
| 133 defines += [ "ENABLE_TASK_MANAGER=1" ] | 133 defines += [ "ENABLE_TASK_MANAGER=1" ] |
| 134 } | 134 } |
| 135 if (enable_themes) { | 135 if (enable_themes) { |
| 136 defines += [ "ENABLE_THEMES=1" ] | 136 defines += [ "ENABLE_THEMES=1" ] |
| 137 } | 137 } |
| 138 if (is_win && win_pdf_metafile_for_printing) { | |
| 139 defines += [ "WIN_PDF_METAFILE_FOR_PRINTING=1" ] | |
| 140 } | |
| 141 if (enable_captive_portal_detection) { | 138 if (enable_captive_portal_detection) { |
| 142 defines += [ "ENABLE_CAPTIVE_PORTAL_DETECTION=1" ] | 139 defines += [ "ENABLE_CAPTIVE_PORTAL_DETECTION=1" ] |
| 143 } | 140 } |
| 144 if (enable_session_service) { | 141 if (enable_session_service) { |
| 145 defines += [ "ENABLE_SESSION_SERVICE=1" ] | 142 defines += [ "ENABLE_SESSION_SERVICE=1" ] |
| 146 } | 143 } |
| 147 if (enable_rlz) { | 144 if (enable_rlz) { |
| 148 defines += [ "ENABLE_RLZ" ] | 145 defines += [ "ENABLE_RLZ" ] |
| 149 } | 146 } |
| 150 if (enable_plugin_installation) { | 147 if (enable_plugin_installation) { |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 "CoreText.framework", | 273 "CoreText.framework", |
| 277 "Foundation.framework", | 274 "Foundation.framework", |
| 278 "UIKit.framework", | 275 "UIKit.framework", |
| 279 ] | 276 ] |
| 280 } else if (is_linux) { | 277 } else if (is_linux) { |
| 281 libs = [ | 278 libs = [ |
| 282 "dl", | 279 "dl", |
| 283 ] | 280 ] |
| 284 } | 281 } |
| 285 } | 282 } |
| OLD | NEW |