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

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

Issue 2310363002: Persist offline page info in a navigation entry if needed (Closed)
Patch Set: Fix win compiling error due to using unique_ptr map in SESSIONS_EXPORT class Created 4 years, 2 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 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 component("sessions") { 14 component("sessions") {
15 sources = [ 15 sources = [
16 "content/content_live_tab.cc", 16 "content/content_live_tab.cc",
17 "content/content_live_tab.h", 17 "content/content_live_tab.h",
18 "content/content_platform_specific_tab_data.cc", 18 "content/content_platform_specific_tab_data.cc",
19 "content/content_platform_specific_tab_data.h", 19 "content/content_platform_specific_tab_data.h",
20 "content/content_record_password_state.cc", 20 "content/content_record_password_state.cc",
21 "content/content_record_password_state.h", 21 "content/content_record_password_state.h",
22 "content/content_serialized_navigation_builder.cc", 22 "content/content_serialized_navigation_builder.cc",
23 "content/content_serialized_navigation_builder.h", 23 "content/content_serialized_navigation_builder.h",
24 "content/content_serialized_navigation_driver.cc", 24 "content/content_serialized_navigation_driver.cc",
25 "content/content_serialized_navigation_driver.h", 25 "content/content_serialized_navigation_driver.h",
26 "content/extended_info_handler.h",
26 ] 27 ]
27 28
28 configs += [ ":implementation" ] 29 configs += [ ":implementation" ]
29 30
30 public_deps = [ 31 public_deps = [
31 ":shared", 32 ":shared",
32 "//content/public/browser", 33 "//content/public/browser",
33 ] 34 ]
34 35
35 deps = [ 36 deps = [
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "//components/sync", 185 "//components/sync",
185 "//testing/gtest", 186 "//testing/gtest",
186 "//ui/base", # For page transition types. 187 "//ui/base", # For page transition types.
187 "//url", 188 "//url",
188 ] 189 ]
189 190
190 if (!is_ios) { 191 if (!is_ios) {
191 deps += [ "//content/public/common" ] 192 deps += [ "//content/public/common" ]
192 } 193 }
193 } 194 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | components/sessions/content/content_serialized_navigation_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698