| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'conditions': [ | 121 'conditions': [ |
| 122 ['OS!="ios"', { | 122 ['OS!="ios"', { |
| 123 'targets': [ | 123 'targets': [ |
| 124 { | 124 { |
| 125 # GN version: //components/content_settings/content/common | 125 # GN version: //components/content_settings/content/common |
| 126 'target_name': 'content_settings_content_common', | 126 'target_name': 'content_settings_content_common', |
| 127 'type': 'static_library', | 127 'type': 'static_library', |
| 128 'dependencies': [ | 128 'dependencies': [ |
| 129 'content_settings_core_common', | 129 'content_settings_core_common', |
| 130 '../base/base.gyp:base', | 130 '../base/base.gyp:base', |
| 131 '../content/content.gyp:content_common', |
| 131 '../ipc/ipc.gyp:ipc', | 132 '../ipc/ipc.gyp:ipc', |
| 132 '../url/url.gyp:url_lib', | 133 '../url/url.gyp:url_lib', |
| 133 '../url/ipc/url_ipc.gyp:url_ipc', | |
| 134 ], | 134 ], |
| 135 'include_dirs': [ | 135 'include_dirs': [ |
| 136 '..', | 136 '..', |
| 137 ], | 137 ], |
| 138 'sources': [ | 138 'sources': [ |
| 139 # Note: sources list duplicated in GN build. | 139 # Note: sources list duplicated in GN build. |
| 140 'content_settings/content/common/content_settings_message_generator.
cc', | 140 'content_settings/content/common/content_settings_message_generator.
cc', |
| 141 'content_settings/content/common/content_settings_message_generator.
h', | 141 'content_settings/content/common/content_settings_message_generator.
h', |
| 142 'content_settings/content/common/content_settings_messages.h', | 142 'content_settings/content/common/content_settings_messages.h', |
| 143 ], | 143 ], |
| 144 }, | 144 }, |
| 145 ], | 145 ], |
| 146 }] | 146 }] |
| 147 ], | 147 ], |
| 148 } | 148 } |
| OLD | NEW |