Upstream has enabled ARC by default for apple code. This change removes the individual setting of it across targets. Chromium change: https://chromium.googlesource.com/chromium/src/+/8485b150e05e24548ec98413ced34994ab9ef622 commit 8485b150e05e24548ec98413ced34994ab9ef622 Author: Avi Drissman <avi@chromium.org> Date: Mon Jul 31 18:07:39 2023 +0000 Rename "enable_arc2" to "enable_arc" Remove uses of "enable_arc" that snuck in, and rename "enable_arc2" to "enable_arc". Bug: 733237
13 lines
376 B
Plaintext
13 lines
376 B
Plaintext
# Copyright (c) 2022 The Brave Authors. All rights reserved.
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
assert(is_apple)
|
|
|
|
source_set("mac") {
|
|
sources = [ "conversions.h" ]
|
|
|
|
frameworks = [ "Foundation.framework" ]
|
|
}
|