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

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

Issue 2151653003: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: crypto Created 4 years, 5 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
« no previous file with comments | « components/search_engines/BUILD.gn ('k') | components/signin/core/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « components/search_engines/BUILD.gn ('k') | components/signin/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698