mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-02-23 10:23:21 +03:00
15 lines
594 B
Plaintext
15 lines
594 B
Plaintext
|
# Copyright 2018 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
declare_args() {
|
||
|
# This enables the linking of Firebase SDK to Chrome for iOS. If Firebase SDK
|
||
|
# is enabled, ios_firebase_plist_path must be defined as a non-empty string.
|
||
|
ios_enable_firebase_sdk = false
|
||
|
|
||
|
# This defines the path to a valid GoogleService-Info.plist file which is
|
||
|
# copied to the application bundle. This must not be an empty string if
|
||
|
# ios_enable_firebase_sdk is true.
|
||
|
ios_firebase_plist_path = ""
|
||
|
}
|