Andy Phan a7424743f9 Add third_party/fp16 dependency
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>
2024-01-04 20:21:51 +00:00

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" ]
}