| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 # Core sources shared by sessions_content and sessions_ios. These can't | 7 # Core sources shared by sessions_content and sessions_ios. These can't |
| 8 # be a separate shared library since one symbol is implemented higher up in | 8 # be a separate shared library since one symbol is implemented higher up in |
| 9 # the sessions_content/ios layer. | 9 # the sessions_content/ios layer. |
| 10 'sessions_core_sources': [ | 10 'sessions_core_sources': [ |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'sources!': [ | 119 'sources!': [ |
| 120 'sessions/core/persistent_tab_restore_service.cc', | 120 'sessions/core/persistent_tab_restore_service.cc', |
| 121 ], | 121 ], |
| 122 }, | 122 }, |
| 123 ], | 123 ], |
| 124 ], | 124 ], |
| 125 }], | 125 }], |
| 126 }, { # OS==ios | 126 }, { # OS==ios |
| 127 'targets': [ | 127 'targets': [ |
| 128 { | 128 { |
| 129 # GN version: //components/sessions |
| 129 'target_name': 'sessions_ios', | 130 'target_name': 'sessions_ios', |
| 130 'type': 'static_library', | 131 'type': 'static_library', |
| 131 'dependencies': [ | 132 'dependencies': [ |
| 132 '../base/base.gyp:base', | 133 '../base/base.gyp:base', |
| 133 '../ios/web/ios_web.gyp:ios_web', | 134 '../ios/web/ios_web.gyp:ios_web', |
| 134 '../sync/sync.gyp:sync', | 135 '../sync/sync.gyp:sync', |
| 135 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 136 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 136 '../ui/base/ui_base.gyp:ui_base', | 137 '../ui/base/ui_base.gyp:ui_base', |
| 137 '../ui/gfx/gfx.gyp:gfx_geometry', | 138 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 138 '../url/url.gyp:url_lib', | 139 '../url/url.gyp:url_lib', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 153 'sessions/ios/ios_serialized_navigation_builder.h', | 154 'sessions/ios/ios_serialized_navigation_builder.h', |
| 154 'sessions/ios/ios_serialized_navigation_driver.cc', | 155 'sessions/ios/ios_serialized_navigation_driver.cc', |
| 155 'sessions/ios/ios_serialized_navigation_driver.h', | 156 'sessions/ios/ios_serialized_navigation_driver.h', |
| 156 ], | 157 ], |
| 157 }, | 158 }, |
| 158 ], | 159 ], |
| 159 }], | 160 }], |
| 160 ], | 161 ], |
| 161 | 162 |
| 162 } | 163 } |
| OLD | NEW |