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

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

Issue 2795983003: Change //components/security_state/core deps to public_deps, add //url. (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 static_library("core") { 10 static_library("core") {
11 sources = [ 11 sources = [
12 "security_state.cc", 12 "security_state.cc",
13 "security_state.h", 13 "security_state.h",
14 "security_state_ui.cc", 14 "security_state_ui.cc",
15 "security_state_ui.h", 15 "security_state_ui.h",
16 "switches.cc", 16 "switches.cc",
17 "switches.h", 17 "switches.h",
18 ] 18 ]
19 19
20 deps = [ 20 public_deps = [
21 "//base", 21 "//base",
22 "//net", 22 "//net",
23 "//url",
23 ] 24 ]
24 } 25 }
25 26
26 if (is_android) { 27 if (is_android) {
27 java_cpp_enum("security_state_enums_java") { 28 java_cpp_enum("security_state_enums_java") {
28 sources = [ 29 sources = [
29 "security_state.h", 30 "security_state.h",
30 ] 31 ]
31 } 32 }
32 } 33 }
33 34
34 source_set("unit_tests") { 35 source_set("unit_tests") {
35 testonly = true 36 testonly = true
36 sources = [ 37 sources = [
37 "security_state_unittest.cc", 38 "security_state_unittest.cc",
38 ] 39 ]
39 40
40 deps = [ 41 deps = [
41 ":core", 42 ":core",
42 "//net:test_support", 43 "//net:test_support",
43 "//testing/gtest", 44 "//testing/gtest",
44 ] 45 ]
45 } 46 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698