OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/content_settings/core/browser | 8 # GN version: //components/content_settings/core/browser |
9 'target_name': 'content_settings_core_browser', | 9 'target_name': 'content_settings_core_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ], | 95 ], |
96 'include_dirs': [ | 96 'include_dirs': [ |
97 '..', | 97 '..', |
98 ], | 98 ], |
99 'sources': [ | 99 'sources': [ |
100 # Note: sources list duplicated in GN build. | 100 # Note: sources list duplicated in GN build. |
101 'content_settings/core/test/content_settings_test_utils.cc', | 101 'content_settings/core/test/content_settings_test_utils.cc', |
102 'content_settings/core/test/content_settings_test_utils.h', | 102 'content_settings/core/test/content_settings_test_utils.h', |
103 ], | 103 ], |
104 }, | 104 }, |
| 105 { |
| 106 # GN version: //components/content_settings/content/common |
| 107 'target_name': 'content_settings_content_common', |
| 108 'type': 'static_library', |
| 109 'dependencies': [ |
| 110 'content_settings_core_common', |
| 111 '../base/base.gyp:base', |
| 112 '../content/content.gyp:content_common', |
| 113 '../ipc/ipc.gyp:ipc', |
| 114 '../url/url.gyp:url_lib', |
| 115 ], |
| 116 'include_dirs': [ |
| 117 '..', |
| 118 ], |
| 119 'sources': [ |
| 120 # Note: sources list duplicated in GN build. |
| 121 'content_settings/content/common/content_settings_message_generator.cc', |
| 122 'content_settings/content/common/content_settings_message_generator.h', |
| 123 'content_settings/content/common/content_settings_messages.h', |
| 124 ], |
| 125 }, |
105 ], | 126 ], |
106 } | 127 } |
OLD | NEW |