Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: build/config/BUILD.gn

Issue 302893002: Drop ENABLE_NEW_GAMEPAD_API build flag as it is no longer needed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
55 ] 50 ]
56 51
57 if (cld_version > 0) { 52 if (cld_version > 0) {
58 defines += [ "CLD_VERSION=$cld_version" ] 53 defines += [ "CLD_VERSION=$cld_version" ]
59 } 54 }
60 if (enable_mdns) { 55 if (enable_mdns) {
61 defines += [ "ENABLE_MDNS=1" ] 56 defines += [ "ENABLE_MDNS=1" ]
62 } 57 }
63 if (enable_pepper_cdms) { 58 if (enable_pepper_cdms) {
64 # TODO(brettw) should probably be "=1" 59 # TODO(brettw) should probably be "=1"
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "CoreText.framework", 222 "CoreText.framework",
228 "Foundation.framework", 223 "Foundation.framework",
229 "UIKit.framework", 224 "UIKit.framework",
230 ] 225 ]
231 } else if (is_linux) { 226 } else if (is_linux) {
232 libs = [ 227 libs = [
233 "dl", 228 "dl",
234 ] 229 ]
235 } 230 }
236 } 231 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698