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

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

Issue 214883005: Add Skia to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 6 years, 8 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
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/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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698