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

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

Issue 1539043002: Pull SecurityStateModel out into a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « components/security_state.gypi ('k') | components/security_state/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP version: components/security_state.gyp
11 source_set("security_state") {
12 sources = [
13 "security_state_model.cc",
14 "security_state_model.h",
15 "security_state_model_client.h",
16 "switches.cc",
17 "switches.h",
18 ]
19
20 deps = [
21 "//base",
22 "//net",
23 ]
24 }
25
26 if (is_android) {
27 # GYP: //components/security_state.gypi:security_state_enums_java
28 java_cpp_enum("security_state_enums_java") {
29 sources = [
30 "security_state_model.h",
31 ]
32 }
33 }
34
35 source_set("unit_tests") {
36 testonly = true
37 sources = [
38 "security_state_model_unittest.cc",
39 ]
40
41 deps = [
42 ":security_state",
43 "//net:test_support",
44 "//testing/gtest",
45 ]
46
47 data = [
48 "//net/data/",
49 ]
50 }
OLDNEW
« no previous file with comments | « components/security_state.gypi ('k') | components/security_state/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698