mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
31 lines
782 B
Plaintext
31 lines
782 B
Plaintext
# Copyright 2016 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.
|
|
|
|
import("//third_party/blink/renderer/modules/modules.gni")
|
|
|
|
blink_modules_sources("shapedetection") {
|
|
sources = [
|
|
"barcode_detector.cc",
|
|
"barcode_detector.h",
|
|
"detected_barcode.cc",
|
|
"detected_barcode.h",
|
|
"detected_face.cc",
|
|
"detected_face.h",
|
|
"detected_text.cc",
|
|
"detected_text.h",
|
|
"face_detector.cc",
|
|
"face_detector.h",
|
|
"shape_detection_type_converter.h",
|
|
"shape_detector.cc",
|
|
"shape_detector.h",
|
|
"text_detector.cc",
|
|
"text_detector.h",
|
|
]
|
|
|
|
public_deps = [
|
|
"//services/shape_detection/public/mojom:mojom_blink",
|
|
"//skia/public/interfaces",
|
|
]
|
|
}
|