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

Side by Side Diff: ios/build/chrome_build.gni

Issue 2562643003: Enable RL by default (Closed)
Patch Set: comments Created 4 years 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ios/ios_sdk.gni") 6 import("//build/config/ios/ios_sdk.gni")
7 import("//build/config/mac/symbols.gni") 7 import("//build/config/mac/symbols.gni")
8 import("//components/reading_list/core/reading_list.gni")
8 9
9 declare_args() { 10 declare_args() {
10 # Enable today extension. 11 # Enable today extension.
11 ios_enable_today_extension = true 12 ios_enable_today_extension = true
12 13
13 # Enable share extension. 14 # Enable share extension.
14 ios_enable_share_extension = true 15 ios_enable_share_extension = enable_reading_list
sdefresne 2016/12/09 15:37:15 This won't do what you expect it to do (it will ta
Olivier 2016/12/09 15:47:19 I would like to be able to disable share_extension
15 16
16 # Value of the encryption export compliance code. See "Cryptography and 17 # Value of the encryption export compliance code. See "Cryptography and
17 # U.S. Export Compliance" in "Submitting the App to App Review" in the 18 # U.S. Export Compliance" in "Submitting the App to App Review" in the
18 # Apple developer documentation (https://goo.gl/yv1xEF). 19 # Apple developer documentation (https://goo.gl/yv1xEF).
19 ios_encryption_export_compliance_code = "" 20 ios_encryption_export_compliance_code = ""
20 21
21 # List of plist templates to merge when generating chrome Info.plist. 22 # List of plist templates to merge when generating chrome Info.plist.
22 ios_chrome_info_plist_additions = [] 23 ios_chrome_info_plist_additions = []
23 24
24 # List of plist templates to merge when generating chrome entitlements. 25 # List of plist templates to merge when generating chrome entitlements.
(...skipping 23 matching lines...) Expand all
48 url_unsecure_scheme = "googlechrome" 49 url_unsecure_scheme = "googlechrome"
49 url_x_callback_scheme = "googlechrome-x-callback" 50 url_x_callback_scheme = "googlechrome-x-callback"
50 } else { 51 } else {
51 chromium_short_name = "Chromium" 52 chromium_short_name = "Chromium"
52 url_channel_scheme = "chromium-dev" 53 url_channel_scheme = "chromium-dev"
53 url_secure_scheme = "chromiums" 54 url_secure_scheme = "chromiums"
54 url_ssoauth_scheme = "$ios_app_bundle_id_prefix.sso.chromium" 55 url_ssoauth_scheme = "$ios_app_bundle_id_prefix.sso.chromium"
55 url_unsecure_scheme = "chromium" 56 url_unsecure_scheme = "chromium"
56 url_x_callback_scheme = "chromium-x-callback" 57 url_x_callback_scheme = "chromium-x-callback"
57 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698