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

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

Issue 1270693004: Add bookmark search feature to enhanced bookmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleaned Created 5 years, 4 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks 10 # GYP: //components/enhanced_bookmarks.gypi:enhanced_bookmarks
11 source_set("enhanced_bookmarks") { 11 source_set("enhanced_bookmarks") {
12 sources = [ 12 sources = [
13 "bookmark_image_service.cc", 13 "bookmark_image_service.cc",
14 "bookmark_image_service.h", 14 "bookmark_image_service.h",
15 "bookmark_server_cluster_service.cc", 15 "bookmark_server_cluster_service.cc",
16 "bookmark_server_cluster_service.h", 16 "bookmark_server_cluster_service.h",
17 "bookmark_server_search_service.cc",
18 "bookmark_server_search_service.h",
17 "bookmark_server_service.cc", 19 "bookmark_server_service.cc",
18 "bookmark_server_service.h", 20 "bookmark_server_service.h",
19 "enhanced_bookmark_features.cc", 21 "enhanced_bookmark_features.cc",
20 "enhanced_bookmark_features.h", 22 "enhanced_bookmark_features.h",
21 "enhanced_bookmark_model.cc", 23 "enhanced_bookmark_model.cc",
22 "enhanced_bookmark_model.h", 24 "enhanced_bookmark_model.h",
23 "enhanced_bookmark_model_observer.h", 25 "enhanced_bookmark_model_observer.h",
24 "enhanced_bookmark_switches.cc", 26 "enhanced_bookmark_switches.cc",
25 "enhanced_bookmark_switches.h", 27 "enhanced_bookmark_switches.h",
26 "enhanced_bookmark_utils.cc", 28 "enhanced_bookmark_utils.cc",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "test_image_store.cc", 82 "test_image_store.cc",
81 "test_image_store.h", 83 "test_image_store.h",
82 ] 84 ]
83 85
84 deps = [ 86 deps = [
85 ":enhanced_bookmarks", 87 ":enhanced_bookmarks",
86 "//skia", 88 "//skia",
87 "//testing/gtest", 89 "//testing/gtest",
88 ] 90 ]
89 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698