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

Side by Side Diff: components/bookmarks/browser/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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("browser") { 7 source_set("browser") {
8 sources = [ 8 sources = [
9 "base_bookmark_model_observer.cc", 9 "base_bookmark_model_observer.cc",
10 "base_bookmark_model_observer.h", 10 "base_bookmark_model_observer.h",
(...skipping 30 matching lines...) Expand all
41 "//base", 41 "//base",
42 "//base:i18n", 42 "//base:i18n",
43 "//base:prefs", 43 "//base:prefs",
44 "//components/bookmarks/common", 44 "//components/bookmarks/common",
45 "//components/favicon_base", 45 "//components/favicon_base",
46 "//components/keyed_service/core", 46 "//components/keyed_service/core",
47 "//components/pref_registry", 47 "//components/pref_registry",
48 "//components/query_parser", 48 "//components/query_parser",
49 "//components/startup_metric_utils", 49 "//components/startup_metric_utils",
50 "//components/strings", 50 "//components/strings",
51 "//components/url_formatter",
51 "//net", 52 "//net",
52 "//third_party/icu", 53 "//third_party/icu",
53 "//ui/base", 54 "//ui/base",
54 "//ui/gfx", 55 "//ui/gfx",
55 "//url", 56 "//url",
56 ] 57 ]
57 58
58 if (toolkit_views) { 59 if (toolkit_views) {
59 sources += [ "bookmark_node_data_views.cc" ] 60 sources += [ "bookmark_node_data_views.cc" ]
60 } 61 }
(...skipping 16 matching lines...) Expand all
77 "//base:prefs", 78 "//base:prefs",
78 "//base:prefs_test_support", 79 "//base:prefs_test_support",
79 "//components/bookmarks/common", 80 "//components/bookmarks/common",
80 "//components/bookmarks/test", 81 "//components/bookmarks/test",
81 "//components/pref_registry", 82 "//components/pref_registry",
82 "//testing/gtest", 83 "//testing/gtest",
83 "//ui/base", 84 "//ui/base",
84 "//url", 85 "//url",
85 ] 86 ]
86 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698