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

Side by Side Diff: components/security_state/ios/BUILD.gn

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: Remove *SecurityModelClient. Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("input_devices") { 5 static_library("ios") {
6 sources = [ 6 sources = [
7 "input_device_client.cc", 7 "ios_security_state_model.h",
8 "input_device_client.h", 8 "ios_security_state_model.mm",
9 ]
10
11 public_deps = [
12 "//components/security_state/core",
9 ] 13 ]
10 14
11 deps = [ 15 deps = [
12 "//base", 16 "//base",
13 "//services/service_manager/public/cpp", 17 "//ios/web",
14 "//ui/events/devices", 18 "//net",
15 ] 19 "//third_party/WebKit/public:blink_headers",
16 20 "//ui/base",
17 public_deps = [
18 "//services/ui/public/interfaces/input_devices",
19 ] 21 ]
20 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698