chromium/services/webnn/tflite/op_resolver.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/webnn/tflite/op_resolver.h"

#include "services/webnn/public/mojom/webnn_context_provider.mojom.h"
#include "third_party/tflite/buildflags.h"
#include "third_party/tflite/src/tensorflow/lite/kernels/builtin_op_kernels.h"

#if BUILDFLAG(BUILD_TFLITE_WITH_NNAPI)
#include "third_party/tflite/src/tensorflow/lite/core/c/c_api_types.h"
#include "third_party/tflite/src/tensorflow/lite/delegates/nnapi/nnapi_delegate.h"
#endif

#if BUILDFLAG(BUILD_TFLITE_WITH_XNNPACK)
#include "third_party/tflite/src/tensorflow/lite/tflite_with_xnnpack_optional.h"
#endif

namespace webnn::tflite {

OpResolver::OpResolver(const mojom::CreateContextOptions& options) {}

}  // namespace webnn::tflite