| # Copyright 2022 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//components/optimization_guide/features.gni") |
| |
| if (is_android) { |
| import("//build/config/android/config.gni") |
| import("//build/config/android/rules.gni") |
| } |
| |
| source_set("embedder") { |
| sources = [ |
| "model_provider_factory_impl.cc", |
| "model_provider_factory_impl.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//components/optimization_guide/core", |
| "//components/optimization_guide/core:features", |
| "//components/segmentation_platform/internal", |
| "//components/segmentation_platform/internal/proto", |
| "//components/segmentation_platform/public", |
| "//url", |
| ] |
| |
| if (build_with_tflite_lib) { |
| deps += [ "//components/segmentation_platform/internal:optimization_guide_segmentation_handler" ] |
| } |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| |
| # IMPORTANT NOTE: When adding new tests, also remember to update the list of |
| # tests in //components/segmentation_platform/components_unittests.filter |
| sources = [ "model_provider_factory_impl_unittest.cc" ] |
| |
| deps = [ |
| ":embedder", |
| "//base", |
| "//base/test:test_support", |
| "//components/commerce/core:feature_list", |
| "//components/optimization_guide/core", |
| "//components/optimization_guide/core:test_support", |
| "//components/segmentation_platform/internal", |
| "//components/segmentation_platform/internal/proto", |
| "//components/segmentation_platform/public", |
| "//services/network/public/cpp", |
| "//testing/gmock", |
| "//testing/gtest", |
| "//url", |
| ] |
| } |