mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
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("//build/config/features.gni")
|
|
import("//rlz/buildflags/buildflags.gni")
|
|
|
|
source_set("search_engines") {
|
|
sources = [
|
|
"search_engine_observer_bridge.h",
|
|
"search_engine_observer_bridge.mm",
|
|
"search_engines_util.cc",
|
|
"search_engines_util.h",
|
|
"template_url_service_client_impl.cc",
|
|
"template_url_service_client_impl.h",
|
|
"template_url_service_factory.cc",
|
|
"template_url_service_factory.h",
|
|
"ui_thread_search_terms_data.cc",
|
|
"ui_thread_search_terms_data.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//components/google/core/browser",
|
|
"//components/history/core/browser",
|
|
"//components/keyed_service/core",
|
|
"//components/keyed_service/ios",
|
|
"//components/omnibox/browser",
|
|
"//components/prefs",
|
|
"//components/search",
|
|
"//components/search_engines",
|
|
"//components/version_info",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/google",
|
|
"//ios/chrome/browser/history",
|
|
"//ios/chrome/common",
|
|
"//ios/web",
|
|
"//net",
|
|
"//rlz/buildflags",
|
|
"//ui/base",
|
|
"//url",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
if (enable_rlz) {
|
|
deps += [ "//components/rlz" ]
|
|
}
|
|
}
|