blob: db5f76dbfc00c6f7b6a7e5d808fe26fe0e0cd31c [file] [log] [blame]
Tommy C. Li39b55a32022-12-08 03:01:431# Copyright 2022 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5component("image_service") {
6 defines = [ "IS_IMAGE_SERVICE_IMPL" ]
7 sources = [
8 "image_service.cc",
9 "image_service.h",
10 ]
11 deps = [
12 "//base",
Sophie Chang6cde9de42023-02-13 23:29:0513 "//components/google/core/common",
Tommy C. Li39b55a32022-12-08 03:01:4314 "//components/history/core/browser",
15 "//components/keyed_service/core",
16 "//components/omnibox/browser",
17 "//components/search_engines",
18 "//components/sync/driver",
19 "//components/unified_consent",
20 "//services/network/public/cpp",
21 "//services/network/public/mojom",
22 ]
23}