| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 source_set("spotlight") { | 5 source_set("spotlight") { |
| 6 sources = [ | 6 sources = [ |
| 7 "actions_spotlight_manager.h", | 7 "actions_spotlight_manager.h", |
| 8 "actions_spotlight_manager.mm", | 8 "actions_spotlight_manager.mm", |
| 9 "base_spotlight_manager.h", | 9 "base_spotlight_manager.h", |
| 10 "base_spotlight_manager.mm", | 10 "base_spotlight_manager.mm", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 testonly = true | 53 testonly = true |
| 54 sources = [ | 54 sources = [ |
| 55 "spotlight_manager_unittest.mm", | 55 "spotlight_manager_unittest.mm", |
| 56 ] | 56 ] |
| 57 deps = [ | 57 deps = [ |
| 58 ":spotlight", | 58 ":spotlight", |
| 59 "//base", | 59 "//base", |
| 60 "//components/bookmarks/browser", | 60 "//components/bookmarks/browser", |
| 61 "//components/bookmarks/test", | 61 "//components/bookmarks/test", |
| 62 "//components/favicon/core", | 62 "//components/favicon/core", |
| 63 "//components/favicon/core/test:test_support", |
| 63 "//components/favicon_base", | 64 "//components/favicon_base", |
| 64 "//ios/chrome/browser/bookmarks", | 65 "//ios/chrome/browser/bookmarks", |
| 65 "//ios/public/provider/chrome/browser", | 66 "//ios/public/provider/chrome/browser", |
| 66 "//ios/public/provider/chrome/browser/spotlight", | 67 "//ios/public/provider/chrome/browser/spotlight", |
| 67 "//net", | 68 "//net", |
| 68 "//testing/gtest", | 69 "//testing/gtest", |
| 69 ] | 70 ] |
| 70 libs = [ "CoreSpotlight.framework" ] | 71 libs = [ "CoreSpotlight.framework" ] |
| 71 } | 72 } |
| OLD | NEW |