| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 | 175 |
| 176 public_deps = [ | 176 public_deps = [ |
| 177 ":sessions", | 177 ":sessions", |
| 178 ] | 178 ] |
| 179 | 179 |
| 180 deps = [ | 180 deps = [ |
| 181 ":test_support", | 181 ":test_support", |
| 182 "//base/test:test_support", | 182 "//base/test:test_support", |
| 183 "//content/public/common", | |
| 184 "//sync", | 183 "//sync", |
| 185 "//testing/gtest", | 184 "//testing/gtest", |
| 186 "//ui/base", # For page transition types. | 185 "//ui/base", # For page transition types. |
| 187 "//url", | 186 "//url", |
| 188 ] | 187 ] |
| 188 |
| 189 if (!is_ios) { |
| 190 deps += [ "//content/public/common" ] |
| 191 } |
| 189 } | 192 } |
| OLD | NEW |