| 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", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ] | 42 ] |
| 43 } | 43 } |
| 44 | 44 |
| 45 source_set("snapshots_internal") { | 45 source_set("snapshots_internal") { |
| 46 sources = [ | 46 sources = [ |
| 47 "snapshot_overlay_provider.h", | 47 "snapshot_overlay_provider.h", |
| 48 "web_controller_snapshot_helper.h", | 48 "web_controller_snapshot_helper.h", |
| 49 "web_controller_snapshot_helper.mm", | 49 "web_controller_snapshot_helper.mm", |
| 50 ] | 50 ] |
| 51 deps = [ | 51 deps = [ |
| 52 ":snapshots", |
| 52 "//base", | 53 "//base", |
| 53 "//ios/chrome/browser/snapshots", | |
| 54 "//ios/chrome/browser/tabs", | 54 "//ios/chrome/browser/tabs", |
| 55 "//ios/chrome/browser/ui", | 55 "//ios/chrome/browser/ui", |
| 56 "//ios/web", | 56 "//ios/web", |
| 57 ] | 57 ] |
| 58 libs = [ "UIKit.framework" ] | 58 libs = [ "UIKit.framework" ] |
| 59 } | 59 } |
| OLD | NEW |