mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-08-02 05:04:39 +08:00
Add fp16 dependency, which is required for V8.
For context, see:
6196de89e3
Also fix pre-existing comment error in DEPS mentioning the wrong name
for fuchsia_gn_sdk_revision.
Change-Id: I35ca746380099544e7d3c783aa506bf73017a8f6
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/115290
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
17 lines
417 B
Plaintext
17 lines
417 B
Plaintext
# Copyright 2024 The PDFium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
config("fp16_config") {
|
|
include_dirs = [ "src/include" ]
|
|
}
|
|
|
|
source_set("fp16") {
|
|
public = [ "src/include/fp16.h" ]
|
|
|
|
configs -= [ "//build/config/compiler:chromium_code" ]
|
|
configs += [ "//build/config/compiler:no_chromium_code" ]
|
|
|
|
public_configs = [ ":fp16_config" ]
|
|
}
|