mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
32 lines
913 B
Plaintext
32 lines
913 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("interstitials") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
sources = [
|
||
|
"ios_chrome_controller_client.h",
|
||
|
"ios_chrome_controller_client.mm",
|
||
|
"ios_chrome_metrics_helper.h",
|
||
|
"ios_chrome_metrics_helper.mm",
|
||
|
"ios_security_interstitial_page.h",
|
||
|
"ios_security_interstitial_page.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/history/core/browser",
|
||
|
"//components/keyed_service/core",
|
||
|
"//components/prefs",
|
||
|
"//components/rappor",
|
||
|
"//components/resources",
|
||
|
"//components/security_interstitials/core",
|
||
|
"//ios/chrome/browser",
|
||
|
"//ios/chrome/browser/browser_state",
|
||
|
"//ios/chrome/browser/history",
|
||
|
"//ios/web",
|
||
|
"//ios/web/public",
|
||
|
"//ui/base",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|