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

Side by Side Diff: components/sessions/BUILD.gn

Issue 1343833002: Abstract content::SessionStorageNamespace from core TabRestore code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension_tab_helper
Patch Set: Response to review 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
« no previous file with comments | « components/sessions.gypi ('k') | components/sessions/content/content_tab_client_data.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 } 7 }
8 8
9 config("implementation") { 9 config("implementation") {
10 defines = [ "SESSIONS_IMPLEMENTATION" ] 10 defines = [ "SESSIONS_IMPLEMENTATION" ]
11 } 11 }
12 12
13 if (!is_ios) { 13 if (!is_ios) {
14 # GYP version: components/sessions.gypi:sessions_content 14 # GYP version: components/sessions.gypi:sessions_content
15 component("sessions") { 15 component("sessions") {
16 sources = [ 16 sources = [
17 "content/content_serialized_navigation_builder.cc", 17 "content/content_serialized_navigation_builder.cc",
18 "content/content_serialized_navigation_builder.h", 18 "content/content_serialized_navigation_builder.h",
19 "content/content_serialized_navigation_driver.cc", 19 "content/content_serialized_navigation_driver.cc",
20 "content/content_serialized_navigation_driver.h", 20 "content/content_serialized_navigation_driver.h",
21 "content/content_tab_client_data.cc",
22 "content/content_tab_client_data.h",
21 ] 23 ]
22 24
23 configs += [ ":implementation" ] 25 configs += [ ":implementation" ]
24 26
25 public_deps = [ 27 public_deps = [
26 ":shared", 28 ":shared",
27 ] 29 ]
28 30
29 deps = [ 31 deps = [
30 ":shared", 32 ":shared",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 65
64 sources = [ 66 sources = [
65 "base_session_service.cc", 67 "base_session_service.cc",
66 "base_session_service.h", 68 "base_session_service.h",
67 "base_session_service_commands.cc", 69 "base_session_service_commands.cc",
68 "base_session_service_commands.h", 70 "base_session_service_commands.h",
69 "base_session_service_delegate.h", 71 "base_session_service_delegate.h",
70 "core/serialized_navigation_driver.h", 72 "core/serialized_navigation_driver.h",
71 "core/session_constants.cc", 73 "core/session_constants.cc",
72 "core/session_constants.h", 74 "core/session_constants.h",
75 "core/tab_restore_service_client.cc",
73 "core/tab_restore_service_client.h", 76 "core/tab_restore_service_client.h",
74 "serialized_navigation_entry.cc", 77 "serialized_navigation_entry.cc",
75 "serialized_navigation_entry.h", 78 "serialized_navigation_entry.h",
76 "session_backend.cc", 79 "session_backend.cc",
77 "session_backend.h", 80 "session_backend.h",
78 "session_command.cc", 81 "session_command.cc",
79 "session_command.h", 82 "session_command.h",
80 "session_id.cc", 83 "session_id.cc",
81 "session_id.h", 84 "session_id.h",
82 "session_service_commands.cc", 85 "session_service_commands.cc",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ] 140 ]
138 deps = [ 141 deps = [
139 ":sessions", 142 ":sessions",
140 ":test_support", 143 ":test_support",
141 "//base/test:test_support", 144 "//base/test:test_support",
142 "//testing/gtest", 145 "//testing/gtest",
143 "//third_party/protobuf:protobuf_lite", 146 "//third_party/protobuf:protobuf_lite",
144 ] 147 ]
145 } 148 }
146 } 149 }
OLDNEW
« no previous file with comments | « components/sessions.gypi ('k') | components/sessions/content/content_tab_client_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698