| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 configs += [ ":implementation" ] | 113 configs += [ ":implementation" ] |
| 114 | 114 |
| 115 public_deps = [ | 115 public_deps = [ |
| 116 "//components/keyed_service/core", | 116 "//components/keyed_service/core", |
| 117 "//sync/protocol", | 117 "//sync/protocol", |
| 118 ] | 118 ] |
| 119 | 119 |
| 120 deps = [ | 120 deps = [ |
| 121 "//base", | 121 "//base", |
| 122 "//components/keyed_service/core", |
| 122 "//components/variations", | 123 "//components/variations", |
| 123 "//skia", | 124 "//skia", |
| 124 "//sync", | 125 "//sync", |
| 125 "//ui/base", | 126 "//ui/base", |
| 126 "//ui/gfx", | 127 "//ui/gfx", |
| 127 "//url", | 128 "//url", |
| 128 ] | 129 ] |
| 129 } | 130 } |
| 130 | 131 |
| 131 source_set("test_support") { | 132 source_set("test_support") { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 deps = [ | 180 deps = [ |
| 180 ":test_support", | 181 ":test_support", |
| 181 "//base/test:test_support", | 182 "//base/test:test_support", |
| 182 "//content/public/common", | 183 "//content/public/common", |
| 183 "//sync", | 184 "//sync", |
| 184 "//testing/gtest", | 185 "//testing/gtest", |
| 185 "//ui/base", # For page transition types. | 186 "//ui/base", # For page transition types. |
| 186 "//url", | 187 "//url", |
| 187 ] | 188 ] |
| 188 } | 189 } |
| OLD | NEW |