summaryrefslogtreecommitdiff
path: root/chromium/ui/snapshot/BUILD.gn
blob: 22e747c9efe42ce31e99785cf2affa5b7fc74619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/ui.gni")
import("//testing/test.gni")

component("snapshot") {
  sources = [
    "screenshot_grabber.cc",
    "screenshot_grabber.h",
    "snapshot.cc",
    "snapshot.h",
  ]

  if (is_android) {
    sources += [ "snapshot_android.cc" ]
  }

  if (is_mac) {
    sources += [ "snapshot_mac.mm" ]
  }

  if (is_win) {
    sources += [
      "snapshot_win.cc",
      "snapshot_win.h",
    ]
  }

  if (is_ios) {
    sources += [ "snapshot_ios.mm" ]
  }

  defines = [ "SNAPSHOT_IMPLEMENTATION" ]

  deps = [
    ":snapshot_export",
    "//base",
    "//components/viz/common",
    "//skia",
    "//ui/base",
    "//ui/display",
    "//ui/gfx",
    "//ui/gfx/geometry",
  ]

  if (is_android) {
    deps += [ "//ui/android" ]
  }

  if (use_aura || is_android) {
    sources += [
      "snapshot_async.cc",
      "snapshot_async.h",
    ]
    deps += [
      "//cc",
      "//gpu/command_buffer/common",
    ]
  }

  if (use_aura) {
    sources += [
      "snapshot_aura.cc",
      "snapshot_aura.h",
    ]
    deps += [
      "//ui/aura",
      "//ui/compositor",
    ]
  }

  if (is_mac) {
    frameworks = [
      "AppKit.framework",
      "CoreGraphics.framework",
    ]
  }
}

source_set("snapshot_export") {
  sources = [ "snapshot_export.h" ]
  visibility = [ ":*" ]
}

test("snapshot_unittests") {
  use_xvfb = use_xvfb_in_this_config

  sources = [ "test/run_all_unittests.cc" ]

  if (is_mac) {
    sources += [ "snapshot_mac_unittest.mm" ]
  }

  deps = [
    ":snapshot",
    "//base",
    "//base/test:test_support",
    "//mojo/core/embedder",
    "//skia",
    "//testing/gtest",
    "//ui/base",
    "//ui/base:test_support",
    "//ui/compositor:test_support",
    "//ui/gfx",
    "//ui/gfx/geometry",
    "//ui/gl",
  ]

  if (use_aura) {
    sources += [ "snapshot_aura_unittest.cc" ]
    deps += [
      "//ui/aura:test_support",
      "//ui/compositor",
      "//ui/compositor:test_support",
      "//ui/wm",
    ]
  }

  if (is_fuchsia) {
    additional_manifest_fragments = [
      # TODO(crbug.com/1185811): Figure out why jit_capabilities is needed.
      "//build/config/fuchsia/test/jit_capabilities.test-cmx",

      "//build/config/fuchsia/test/present_view_capabilities.test-cmx",
    ]
  }
}