| 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': [ |
| 11 'sessions/base_session_service.cc', | 11 'sessions/base_session_service.cc', |
| 12 'sessions/base_session_service.h', | 12 'sessions/base_session_service.h', |
| 13 'sessions/base_session_service_commands.cc', | 13 'sessions/base_session_service_commands.cc', |
| 14 'sessions/base_session_service_commands.h', | 14 'sessions/base_session_service_commands.h', |
| 15 'sessions/base_session_service_delegate.h', | 15 'sessions/base_session_service_delegate.h', |
| 16 'sessions/core/serialized_navigation_driver.h', | 16 'sessions/core/serialized_navigation_driver.h', |
| 17 'sessions/core/session_constants.cc', |
| 18 'sessions/core/session_constants.h', |
| 19 'sessions/core/tab_restore_service_client.h', |
| 17 'sessions/serialized_navigation_entry.cc', | 20 'sessions/serialized_navigation_entry.cc', |
| 18 'sessions/serialized_navigation_entry.h', | 21 'sessions/serialized_navigation_entry.h', |
| 19 'sessions/session_backend.cc', | 22 'sessions/session_backend.cc', |
| 20 'sessions/session_backend.h', | 23 'sessions/session_backend.h', |
| 21 'sessions/session_command.cc', | 24 'sessions/session_command.cc', |
| 22 'sessions/session_command.h', | 25 'sessions/session_command.h', |
| 23 'sessions/session_id.cc', | 26 'sessions/session_id.cc', |
| 24 'sessions/session_id.h', | 27 'sessions/session_id.h', |
| 25 'sessions/session_service_commands.cc', | 28 'sessions/session_service_commands.cc', |
| 26 'sessions/session_service_commands.h', | 29 'sessions/session_service_commands.h', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'sessions/ios/ios_serialized_navigation_builder.h', | 123 'sessions/ios/ios_serialized_navigation_builder.h', |
| 121 'sessions/ios/ios_serialized_navigation_driver.cc', | 124 'sessions/ios/ios_serialized_navigation_driver.cc', |
| 122 'sessions/ios/ios_serialized_navigation_driver.h', | 125 'sessions/ios/ios_serialized_navigation_driver.h', |
| 123 ], | 126 ], |
| 124 }, | 127 }, |
| 125 ], | 128 ], |
| 126 }], | 129 }], |
| 127 ], | 130 ], |
| 128 | 131 |
| 129 } | 132 } |
| OLD | NEW |