14 lines
469 B
Plaintext
14 lines
469 B
Plaintext
|
|
# Copyright 2023 The Chromium Authors
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
import("//build/config/features.gni")
|
||
|
|
|
||
|
|
# TODO(crbug.com/1414153): this should be removed once there is a unified
|
||
|
|
# approach to TimeTicks::Now on iOS.
|
||
|
|
declare_args() {
|
||
|
|
# use_blink currently assumes mach absolute time ticks (eg, to ensure that
|
||
|
|
# trace events cohere).
|
||
|
|
enable_mach_absolute_time_ticks = is_mac || use_blink
|
||
|
|
}
|