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

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

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes following rebase Created 5 years, 6 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 static_library("omnibox") { 5 static_library("omnibox") {
6 sources = [ 6 sources = [
7 "answers_cache.cc", 7 "answers_cache.cc",
8 "answers_cache.h", 8 "answers_cache.h",
9 "autocomplete_input.cc", 9 "autocomplete_input.cc",
10 "autocomplete_input.h", 10 "autocomplete_input.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ] 42 ]
43 deps = [ 43 deps = [
44 "//base", 44 "//base",
45 "//base:i18n", 45 "//base:i18n",
46 "//components/history/core/browser", 46 "//components/history/core/browser",
47 "//components/resources", 47 "//components/resources",
48 "//components/search", 48 "//components/search",
49 "//components/search_engines", 49 "//components/search_engines",
50 "//components/strings", 50 "//components/strings",
51 "//components/url_fixer", 51 "//components/url_fixer",
52 "//components/url_formatter",
52 "//components/variations", 53 "//components/variations",
53 "//components/variations/net", 54 "//components/variations/net",
54 "//net", 55 "//net",
55 "//ui/base", 56 "//ui/base",
56 "//url", 57 "//url",
57 ] 58 ]
58 } 59 }
59 60
60 static_library("test_support") { 61 static_library("test_support") {
61 sources = [ 62 sources = [
(...skipping 21 matching lines...) Expand all
83 "suggestion_answer_unittest.cc", 84 "suggestion_answer_unittest.cc",
84 ] 85 ]
85 86
86 deps = [ 87 deps = [
87 ":omnibox", 88 ":omnibox",
88 ":test_support", 89 ":test_support",
89 "//testing/gmock", 90 "//testing/gmock",
90 "//testing/gtest", 91 "//testing/gtest",
91 ] 92 ]
92 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698