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 26 matching lines...) Expand all Loading... |
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_GOOGLE_NOW=1", | 42 "ENABLE_GOOGLE_NOW=1", |
43 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", | 43 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", |
44 "ENABLE_APP_LIST=1", | 44 "ENABLE_APP_LIST=1", |
45 "ENABLE_SETTINGS_APP=1", | 45 "ENABLE_SETTINGS_APP=1", |
46 "ENABLE_MANAGED_USERS=1", | 46 "ENABLE_MANAGED_USERS=1", |
| 47 "ENABLE_SERVICE_DISCOVERY=1", |
| 48 "USE_MOJO=1", |
47 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. | 49 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. |
| 50 # Temporary suppression until Blink code can be removed. |
| 51 "BLINK_SCALE_FILTERS_AT_RECORD_TIME", |
48 ] | 52 ] |
49 | 53 |
50 if (cld_version > 0) { | 54 if (cld_version > 0) { |
51 defines += [ "CLD_VERSION=$cld_version" ] | 55 defines += [ "CLD_VERSION=$cld_version" ] |
52 } | 56 } |
53 if (enable_mdns) { | 57 if (enable_mdns) { |
54 defines += [ "ENABLE_MDNS=1" ] | 58 defines += [ "ENABLE_MDNS=1" ] |
55 } | 59 } |
56 if (enable_pepper_cdms) { | 60 if (enable_pepper_cdms) { |
57 # TODO(brettw) should probably be "=1" | 61 # TODO(brettw) should probably be "=1" |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "CoreText.framework", | 209 "CoreText.framework", |
206 "Foundation.framework", | 210 "Foundation.framework", |
207 "UIKit.framework", | 211 "UIKit.framework", |
208 ] | 212 ] |
209 } else if (is_linux) { | 213 } else if (is_linux) { |
210 libs = [ | 214 libs = [ |
211 "dl", | 215 "dl", |
212 ] | 216 ] |
213 } | 217 } |
214 } | 218 } |
OLD | NEW |