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

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: 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 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ] 139 ]
138 deps = [ 140 deps = [
139 ":sessions", 141 ":sessions",
140 ":test_support", 142 ":test_support",
141 "//base/test:test_support", 143 "//base/test:test_support",
142 "//testing/gtest", 144 "//testing/gtest",
143 "//third_party/protobuf:protobuf_lite", 145 "//third_party/protobuf:protobuf_lite",
144 ] 146 ]
145 } 147 }
146 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698