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 # GYP version: components/security_state.gyp | 10 # GYP version: components/security_state.gyp |
(...skipping 25 matching lines...) Expand all Loading... |
36 testonly = true | 36 testonly = true |
37 sources = [ | 37 sources = [ |
38 "security_state_model_unittest.cc", | 38 "security_state_model_unittest.cc", |
39 ] | 39 ] |
40 | 40 |
41 deps = [ | 41 deps = [ |
42 ":security_state", | 42 ":security_state", |
43 "//net:test_support", | 43 "//net:test_support", |
44 "//testing/gtest", | 44 "//testing/gtest", |
45 ] | 45 ] |
46 | |
47 data = [ | |
48 "//net/data/", | |
49 ] | |
50 } | 46 } |
OLD | NEW |