Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: ios/chrome/browser/snapshots/BUILD.gn

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/signin/BUILD.gn ('k') | ios/chrome/browser/ssl/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("snapshots") {
6 sources = [
7 "lru_cache.h",
8 "lru_cache.mm",
9 "snapshot_cache.h",
10 "snapshot_cache.mm",
11 "snapshot_cache_internal.h",
12 "snapshot_manager.h",
13 "snapshot_manager.mm",
14 "snapshot_overlay.h",
15 "snapshot_overlay.mm",
16 "snapshots_util.h",
17 "snapshots_util.mm",
18 ]
19 deps = [
20 "//base",
21 "//ios/chrome/browser:browser_no_public_deps",
22 "//ios/chrome/browser/ui",
23 "//ios/web",
24 ]
25 libs = [ "QuartzCore.framework" ]
26 }
27
28 source_set("unit_tests") {
29 testonly = true
30 sources = [
31 "lru_cache_unittest.mm",
32 "snapshot_cache_unittest.mm",
33 "snapshots_util_unittest.mm",
34 ]
35 deps = [
36 ":snapshots",
37 "//base",
38 "//ios/chrome/browser",
39 "//ios/chrome/browser/ui",
40 "//ios/web",
41 "//ios/web:test_support",
42 "//testing/gtest",
43 ]
44 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/signin/BUILD.gn ('k') | ios/chrome/browser/ssl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698