Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Unified Diff: components/security_state/ios/BUILD.gn

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: Remove *SecurityModelClient. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/security_state/ios/BUILD.gn
diff --git a/services/ui/public/cpp/input_devices/BUILD.gn b/components/security_state/ios/BUILD.gn
similarity index 50%
copy from services/ui/public/cpp/input_devices/BUILD.gn
copy to components/security_state/ios/BUILD.gn
index 5fc4f27d191d963b8888156390c014ae60cf90f1..82d92a981591b6114caf5c77cf532b3dd8c3cec3 100644
--- a/services/ui/public/cpp/input_devices/BUILD.gn
+++ b/components/security_state/ios/BUILD.gn
@@ -2,19 +2,21 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("input_devices") {
+static_library("ios") {
sources = [
- "input_device_client.cc",
- "input_device_client.h",
+ "ios_security_state_model.h",
+ "ios_security_state_model.mm",
]
- deps = [
- "//base",
- "//services/service_manager/public/cpp",
- "//ui/events/devices",
+ public_deps = [
+ "//components/security_state/core",
]
- public_deps = [
- "//services/ui/public/interfaces/input_devices",
+ deps = [
+ "//base",
+ "//ios/web",
+ "//net",
+ "//third_party/WebKit/public:blink_headers",
+ "//ui/base",
]
}

Powered by Google App Engine
This is Rietveld 408576698