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 source_set("mozilla_security_manager") { | 5 static_library("mozilla_security_manager") { |
6 sources = [ | 6 sources = [ |
7 "nsNSSCertHelper.cpp", | 7 "nsNSSCertHelper.cpp", |
8 "nsNSSCertHelper.h", | 8 "nsNSSCertHelper.h", |
9 "nsNSSCertificate.cpp", | 9 "nsNSSCertificate.cpp", |
10 "nsNSSCertificate.h", | 10 "nsNSSCertificate.h", |
11 "nsUsageArrayHelper.cpp", | 11 "nsUsageArrayHelper.cpp", |
12 "nsUsageArrayHelper.h", | 12 "nsUsageArrayHelper.h", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//base:i18n", | 17 "//base:i18n", |
18 "//chrome/app:generated_resources", | 18 "//chrome/app:generated_resources", |
19 "//crypto:platform", | 19 "//crypto:platform", |
20 "//net", | 20 "//net", |
21 "//third_party/icu", | 21 "//third_party/icu", |
22 "//ui/base", | 22 "//ui/base", |
23 ] | 23 ] |
24 } | 24 } |
OLD | NEW |