| 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 configs += [ "//build/config/compiler:enable_arc" ] |
| 6 sources = [ | 7 sources = [ |
| 7 "actions_spotlight_manager.h", | 8 "actions_spotlight_manager.h", |
| 8 "actions_spotlight_manager.mm", | 9 "actions_spotlight_manager.mm", |
| 9 "base_spotlight_manager.h", | 10 "base_spotlight_manager.h", |
| 10 "base_spotlight_manager.mm", | 11 "base_spotlight_manager.mm", |
| 11 "bookmarks_spotlight_manager.h", | 12 "bookmarks_spotlight_manager.h", |
| 12 "bookmarks_spotlight_manager.mm", | 13 "bookmarks_spotlight_manager.mm", |
| 13 "spotlight_manager.h", | 14 "spotlight_manager.h", |
| 14 "spotlight_manager.mm", | 15 "spotlight_manager.mm", |
| 15 "spotlight_util.h", | 16 "spotlight_util.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//components/favicon/core", | 63 "//components/favicon/core", |
| 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 |