Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: components/sessions.gypi

Issue 1343833002: Abstract content::SessionStorageNamespace from core TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension_tab_helper
Patch Set: Hopefully fix Windows Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'SESSIONS_IMPLEMENTATION', 86 'SESSIONS_IMPLEMENTATION',
87 ], 87 ],
88 'sources': [ 88 'sources': [
89 # Note: sources list duplicated in GN build. 89 # Note: sources list duplicated in GN build.
90 '<@(sessions_core_sources)', 90 '<@(sessions_core_sources)',
91 91
92 'sessions/content/content_serialized_navigation_builder.cc', 92 'sessions/content/content_serialized_navigation_builder.cc',
93 'sessions/content/content_serialized_navigation_builder.h', 93 'sessions/content/content_serialized_navigation_builder.h',
94 'sessions/content/content_serialized_navigation_driver.cc', 94 'sessions/content/content_serialized_navigation_driver.cc',
95 'sessions/content/content_serialized_navigation_driver.h', 95 'sessions/content/content_serialized_navigation_driver.h',
96 'sessions/content/content_tab_client_data.cc',
97 'sessions/content/content_tab_client_data.h',
96 ], 98 ],
97 }, 99 },
98 ], 100 ],
99 }, { # OS==ios 101 }, { # OS==ios
100 'targets': [ 102 'targets': [
101 { 103 {
102 'target_name': 'sessions_ios', 104 'target_name': 'sessions_ios',
103 'type': 'static_library', 105 'type': 'static_library',
104 'dependencies': [ 106 'dependencies': [
105 '../base/base.gyp:base', 107 '../base/base.gyp:base',
(...skipping 17 matching lines...) Expand all
123 'sessions/ios/ios_serialized_navigation_builder.h', 125 'sessions/ios/ios_serialized_navigation_builder.h',
124 'sessions/ios/ios_serialized_navigation_driver.cc', 126 'sessions/ios/ios_serialized_navigation_driver.cc',
125 'sessions/ios/ios_serialized_navigation_driver.h', 127 'sessions/ios/ios_serialized_navigation_driver.h',
126 ], 128 ],
127 }, 129 },
128 ], 130 ],
129 }], 131 }],
130 ], 132 ],
131 133
132 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698