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("snapshots") { | 5 source_set("snapshots") { |
6 sources = [ | 6 sources = [ |
7 "lru_cache.h", | 7 "lru_cache.h", |
8 "lru_cache.mm", | 8 "lru_cache.mm", |
9 "snapshot_cache.h", | 9 "snapshot_cache.h", |
10 "snapshot_cache.mm", | 10 "snapshot_cache.mm", |
11 "snapshot_cache_factory.h", | 11 "snapshot_cache_factory.h", |
12 "snapshot_cache_factory.mm", | 12 "snapshot_cache_factory.mm", |
13 "snapshot_cache_internal.h", | 13 "snapshot_cache_internal.h", |
14 "snapshot_cache_web_state_list_observer.h", | 14 "snapshot_cache_web_state_list_observer.h", |
15 "snapshot_cache_web_state_list_observer.mm", | 15 "snapshot_cache_web_state_list_observer.mm", |
| 16 "snapshot_constants.h", |
| 17 "snapshot_constants.mm", |
16 "snapshot_manager.h", | 18 "snapshot_manager.h", |
17 "snapshot_manager.mm", | 19 "snapshot_manager.mm", |
18 "snapshot_overlay.h", | 20 "snapshot_overlay.h", |
19 "snapshot_overlay.mm", | 21 "snapshot_overlay.mm", |
20 "snapshots_util.h", | 22 "snapshots_util.h", |
21 "snapshots_util.mm", | 23 "snapshots_util.mm", |
22 ] | 24 ] |
23 deps = [ | 25 deps = [ |
24 "//base", | 26 "//base", |
25 "//components/keyed_service/core", | 27 "//components/keyed_service/core", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 ] | 64 ] |
63 deps = [ | 65 deps = [ |
64 ":snapshots", | 66 ":snapshots", |
65 "//base", | 67 "//base", |
66 "//ios/chrome/browser/tabs", | 68 "//ios/chrome/browser/tabs", |
67 "//ios/chrome/browser/ui", | 69 "//ios/chrome/browser/ui", |
68 "//ios/web", | 70 "//ios/web", |
69 ] | 71 ] |
70 libs = [ "UIKit.framework" ] | 72 libs = [ "UIKit.framework" ] |
71 } | 73 } |
OLD | NEW |