OLD | NEW |
---|---|
(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 { | |
6 'targets': [ | |
7 { | |
8 # GN version: //components/ssl_config | |
9 'target_name': 'ssl_config', | |
10 'type': '<(component)', | |
droger
2015/09/07 13:06:37
Change this to:
'type': 'static_library',
Abhishek
2015/09/07 13:16:21
Done.
| |
11 'dependencies': [ | |
12 '../base/base.gyp:base', | |
13 '../base/base.gyp:base_prefs', | |
14 '../net/net.gyp:net', | |
15 'content_settings_core_common', | |
16 ], | |
17 'include_dirs': [ | |
18 '..', | |
19 ], | |
20 'sources': [ | |
21 'ssl_config/ssl_config_prefs.cc', | |
22 'ssl_config/ssl_config_prefs.h', | |
23 'ssl_config/ssl_config_service_manager.h', | |
24 'ssl_config/ssl_config_service_manager_pref.cc', | |
25 'ssl_config/ssl_config_switches.cc', | |
26 'ssl_config/ssl_config_switches.h', | |
27 ], | |
28 }, | |
29 ], | |
30 } | |
OLD | NEW |