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

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

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: sync. 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
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni")
8 }
9
10 static_library("security_state") {
11 sources = [
12 "security_state_model.cc",
13 "security_state_model.h",
14 "security_state_model_client.h",
15 "switches.cc",
16 "switches.h",
17 ]
18
19 deps = [
20 "//base",
21 "//net",
22 ]
23 }
24
25 if (is_android) {
26 java_cpp_enum("security_state_enums_java") {
27 sources = [
28 "security_state_model.h",
29 ]
30 }
31 }
32
33 source_set("unit_tests") {
34 testonly = true
35 sources = [
36 "security_state_model_unittest.cc",
37 ]
38
39 deps = [
40 ":security_state",
41 "//net:test_support",
42 "//testing/gtest",
43 ]
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698