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