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

Side by Side Diff: ios/chrome/app/spotlight/BUILD.gn

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 years 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 | « ios/chrome/app/safe_mode/BUILD.gn ('k') | ios/chrome/app/startup/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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("spotlight") {
6 sources = [
7 "actions_spotlight_manager.h",
8 "actions_spotlight_manager.mm",
9 "base_spotlight_manager.h",
10 "base_spotlight_manager.mm",
11 "bookmarks_spotlight_manager.h",
12 "bookmarks_spotlight_manager.mm",
13 "spotlight_manager.h",
14 "spotlight_manager.mm",
15 "spotlight_util.h",
16 "spotlight_util.mm",
17 "topsites_spotlight_manager.h",
18 "topsites_spotlight_manager.mm",
19 ]
20 deps = [
21 "//base",
22 "//components/bookmarks/browser",
23 "//components/browser_sync",
24 "//components/favicon/core",
25 "//components/favicon_base",
26 "//components/history/core/browser",
27 "//components/suggestions",
28 "//ios/chrome/app/strings",
29 "//ios/chrome/browser",
30 "//ios/chrome/browser/bookmarks",
31 "//ios/chrome/browser/favicon",
32 "//ios/chrome/browser/history",
33 "//ios/chrome/browser/suggestions",
34 "//ios/chrome/browser/sync",
35 "//ios/chrome/browser/ui/ntp:ntp_internal",
36 "//ios/chrome/common/app_group",
37 "//ios/public/provider/chrome/browser",
38 "//ios/public/provider/chrome/browser/spotlight",
39 "//ios/third_party/material_components_ios",
40 "//net",
41 "//skia",
42 "//ui/base",
43 "//url",
44 ]
45 libs = [
46 "CoreSpotlight.framework",
47 "UIKit.framework",
48 ]
49 }
50
51 source_set("unit_tests") {
52 testonly = true
53 sources = [
54 "spotlight_manager_unittest.mm",
55 ]
56 deps = [
57 ":spotlight",
58 "//base",
59 "//components/bookmarks/browser",
60 "//components/bookmarks/test",
61 "//components/favicon/core",
62 "//components/favicon_base",
63 "//ios/chrome/browser/bookmarks",
64 "//ios/public/provider/chrome/browser",
65 "//ios/public/provider/chrome/browser/spotlight",
66 "//net",
67 "//testing/gtest",
68 ]
69 libs = [ "CoreSpotlight.framework" ]
70 }
OLDNEW
« no previous file with comments | « ios/chrome/app/safe_mode/BUILD.gn ('k') | ios/chrome/app/startup/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698