| OLD | NEW |
| 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", |
| 15 "security_state_ui.h", |
| 14 "switches.cc", | 16 "switches.cc", |
| 15 "switches.h", | 17 "switches.h", |
| 16 ] | 18 ] |
| 17 | 19 |
| 18 deps = [ | 20 deps = [ |
| 19 "//base", | 21 "//base", |
| 20 "//net", | 22 "//net", |
| 21 ] | 23 ] |
| 22 } | 24 } |
| 23 | 25 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 34 sources = [ | 36 sources = [ |
| 35 "security_state_unittest.cc", | 37 "security_state_unittest.cc", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 deps = [ | 40 deps = [ |
| 39 ":core", | 41 ":core", |
| 40 "//net:test_support", | 42 "//net:test_support", |
| 41 "//testing/gtest", | 43 "//testing/gtest", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| OLD | NEW |