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 29 matching lines...) Expand all Loading... |
40 "ENABLE_GOOGLE_NOW=1", | 40 "ENABLE_GOOGLE_NOW=1", |
41 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", | 41 "ENABLE_CAPTIVE_PORTAL_DETECTION=1", |
42 "ENABLE_APP_LIST=1", | 42 "ENABLE_APP_LIST=1", |
43 "ENABLE_SETTINGS_APP=1", | 43 "ENABLE_SETTINGS_APP=1", |
44 "ENABLE_MANAGED_USERS=1", | 44 "ENABLE_MANAGED_USERS=1", |
45 "ENABLE_SERVICE_DISCOVERY=1", | 45 "ENABLE_SERVICE_DISCOVERY=1", |
46 "USE_MOJO=1", | 46 "USE_MOJO=1", |
47 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. | 47 "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere. |
48 # Temporary suppression until Blink code can be removed. | 48 # Temporary suppression until Blink code can be removed. |
49 "BLINK_SCALE_FILTERS_AT_RECORD_TIME", | 49 "BLINK_SCALE_FILTERS_AT_RECORD_TIME", |
| 50 |
| 51 # Enable a new Gamepad interface. |
| 52 # TODO(cdumez): This is temporary and should go away once the chromium |
| 53 # and blink interfaces are in sync, http://crbug.com/344556. |
| 54 "ENABLE_NEW_GAMEPAD_API=1", |
50 ] | 55 ] |
51 | 56 |
52 if (cld_version > 0) { | 57 if (cld_version > 0) { |
53 defines += [ "CLD_VERSION=$cld_version" ] | 58 defines += [ "CLD_VERSION=$cld_version" ] |
54 } | 59 } |
55 if (enable_mdns) { | 60 if (enable_mdns) { |
56 defines += [ "ENABLE_MDNS=1" ] | 61 defines += [ "ENABLE_MDNS=1" ] |
57 } | 62 } |
58 if (enable_pepper_cdms) { | 63 if (enable_pepper_cdms) { |
59 # TODO(brettw) should probably be "=1" | 64 # TODO(brettw) should probably be "=1" |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "CoreText.framework", | 227 "CoreText.framework", |
223 "Foundation.framework", | 228 "Foundation.framework", |
224 "UIKit.framework", | 229 "UIKit.framework", |
225 ] | 230 ] |
226 } else if (is_linux) { | 231 } else if (is_linux) { |
227 libs = [ | 232 libs = [ |
228 "dl", | 233 "dl", |
229 ] | 234 ] |
230 } | 235 } |
231 } | 236 } |
OLD | NEW |