| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 sources = [ | 47 sources = [ |
| 48 "lru_cache_unittest.mm", | 48 "lru_cache_unittest.mm", |
| 49 "snapshot_cache_unittest.mm", | 49 "snapshot_cache_unittest.mm", |
| 50 "snapshots_util_unittest.mm", | 50 "snapshots_util_unittest.mm", |
| 51 ] | 51 ] |
| 52 deps = [ | 52 deps = [ |
| 53 ":snapshots", | 53 ":snapshots", |
| 54 "//base", | 54 "//base", |
| 55 "//ios/chrome/browser/ui", | 55 "//ios/chrome/browser/ui", |
| 56 "//ios/web", | 56 "//ios/web", |
| 57 "//ios/web:test_support", | 57 "//ios/web/public/test:test_support", |
| 58 "//testing/gtest", | 58 "//testing/gtest", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 source_set("snapshots_internal") { | 62 source_set("snapshots_internal") { |
| 63 sources = [ | 63 sources = [ |
| 64 "snapshot_overlay_provider.h", | 64 "snapshot_overlay_provider.h", |
| 65 "web_controller_snapshot_helper.h", | 65 "web_controller_snapshot_helper.h", |
| 66 "web_controller_snapshot_helper.mm", | 66 "web_controller_snapshot_helper.mm", |
| 67 ] | 67 ] |
| 68 deps = [ | 68 deps = [ |
| 69 ":snapshots", | 69 ":snapshots", |
| 70 "//base", | 70 "//base", |
| 71 "//ios/chrome/browser/tabs", | 71 "//ios/chrome/browser/tabs", |
| 72 "//ios/chrome/browser/ui", | 72 "//ios/chrome/browser/ui", |
| 73 "//ios/web", | 73 "//ios/web", |
| 74 ] | 74 ] |
| 75 libs = [ "UIKit.framework" ] | 75 libs = [ "UIKit.framework" ] |
| 76 } | 76 } |
| OLD | NEW |