| OLD | NEW |
| 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" ] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "//components/keyed_service/core", | 122 "//components/keyed_service/core", |
| 123 "//components/variations", | 123 "//components/variations", |
| 124 "//skia", | 124 "//skia", |
| 125 "//sync", | 125 "//sync", |
| 126 "//ui/base", | 126 "//ui/base", |
| 127 "//ui/gfx", | 127 "//ui/gfx", |
| 128 "//url", | 128 "//url", |
| 129 ] | 129 ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 source_set("test_support") { | 132 static_library("test_support") { |
| 133 testonly = true | 133 testonly = true |
| 134 sources = [ | 134 sources = [ |
| 135 "core/serialized_navigation_entry_test_helper.cc", | 135 "core/serialized_navigation_entry_test_helper.cc", |
| 136 "core/serialized_navigation_entry_test_helper.h", | 136 "core/serialized_navigation_entry_test_helper.h", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 public_deps = [ | 139 public_deps = [ |
| 140 ":sessions", | 140 ":sessions", |
| 141 ] | 141 ] |
| 142 deps = [ | 142 deps = [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "//sync", | 183 "//sync", |
| 184 "//testing/gtest", | 184 "//testing/gtest", |
| 185 "//ui/base", # For page transition types. | 185 "//ui/base", # For page transition types. |
| 186 "//url", | 186 "//url", |
| 187 ] | 187 ] |
| 188 | 188 |
| 189 if (!is_ios) { | 189 if (!is_ios) { |
| 190 deps += [ "//content/public/common" ] | 190 deps += [ "//content/public/common" ] |
| 191 } | 191 } |
| 192 } | 192 } |
| OLD | NEW |