mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
29 lines
793 B
Plaintext
29 lines
793 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.
|
|
|
|
source_set("suggestions") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"suggestions_service_factory.h",
|
|
"suggestions_service_factory.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//components/browser_sync",
|
|
"//components/image_fetcher/core",
|
|
"//components/image_fetcher/ios",
|
|
"//components/keyed_service/ios",
|
|
"//components/leveldb_proto",
|
|
"//components/signin/core/browser",
|
|
"//components/suggestions",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/signin",
|
|
"//ios/chrome/browser/sync",
|
|
"//ios/web",
|
|
"//net",
|
|
"//skia",
|
|
"//ui/gfx",
|
|
]
|
|
}
|