| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # When set, turns off the (normally-on) iterator debugging and related stuff | 10 # When set, turns off the (normally-on) iterator debugging and related stuff |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "ENABLE_INPUT_SPEECH", | 32 "ENABLE_INPUT_SPEECH", |
| 33 "ENABLE_NOTIFICATIONS", | 33 "ENABLE_NOTIFICATIONS", |
| 34 "ENABLE_EGLIMAGE=1", | 34 "ENABLE_EGLIMAGE=1", |
| 35 "ENABLE_TASK_MANAGER=1", | 35 "ENABLE_TASK_MANAGER=1", |
| 36 "ENABLE_EXTENSIONS=1", | 36 "ENABLE_EXTENSIONS=1", |
| 37 "ENABLE_PLUGIN_INSTALLATION=1", | 37 "ENABLE_PLUGIN_INSTALLATION=1", |
| 38 "ENABLE_SESSION_SERVICE=1", | 38 "ENABLE_SESSION_SERVICE=1", |
| 39 "ENABLE_THEMES=1", | 39 "ENABLE_THEMES=1", |
| 40 "ENABLE_AUTOFILL_DIALOG=1", | 40 "ENABLE_AUTOFILL_DIALOG=1", |
| 41 "ENABLE_BACKGROUND=1", | 41 "ENABLE_BACKGROUND=1", |
| 42 "ENABLE_AUTOMATION=1", | |
| 43 "ENABLE_GOOGLE_NOW=1", | 42 "ENABLE_GOOGLE_NOW=1", |
| 44 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", | 43 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", |
| 45 "ENABLE_APP_LIST=1", | 44 "ENABLE_APP_LIST=1", |
| 46 "ENABLE_SETTINGS_APP=1", | 45 "ENABLE_SETTINGS_APP=1", |
| 47 "ENABLE_MANAGED_USERS=1", | 46 "ENABLE_MANAGED_USERS=1", |
| 48 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. | 47 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. |
| 49 ] | 48 ] |
| 50 | 49 |
| 51 if (cld_version > 0) { | 50 if (cld_version > 0) { |
| 52 defines += [ "CLD_VERSION=$cld_version" ] | 51 defines += [ "CLD_VERSION=$cld_version" ] |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "CoreText.framework", | 205 "CoreText.framework", |
| 207 "Foundation.framework", | 206 "Foundation.framework", |
| 208 "UIKit.framework", | 207 "UIKit.framework", |
| 209 ] | 208 ] |
| 210 } else if (is_linux) { | 209 } else if (is_linux) { |
| 211 libs = [ | 210 libs = [ |
| 212 "dl", | 211 "dl", |
| 213 ] | 212 ] |
| 214 } | 213 } |
| 215 } | 214 } |
| OLD | NEW |