summaryrefslogtreecommitdiffstats
path: root/mandoline/tab/BUILD.gn
blob: 2ba6298d8924c0095a8381caef03dee81c56461f (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
# Copyright 2015 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("//mojo/public/mojo_application.gni")

source_set("tab") {
  sources = [
    "frame.cc",
    "frame.h",
    "frame_services.cc",
    "frame_services.h",
    "frame_tree.cc",
    "frame_tree.h",
    "frame_tree_delegate.h",
    "frame_user_data.h",
  ]

  deps = [
    "//base",
    "//components/view_manager/public/cpp",
    "//mandoline/tab/public/interfaces",
    "//mojo/application/public/cpp",
    "//mojo/application/public/interfaces",
    "//third_party/mojo/src/mojo/public/cpp/bindings",
  ]
}

mojo_native_application("mandoline_frame_apptests") {
  testonly = true

  sources = [
    "frame_apptest.cc",
  ]

  deps = [
    ":tab",
    "//base",
    "//base/test:test_config",
    "//components/view_manager/public/cpp",
    "//components/view_manager/public/interfaces",
    "//mandoline/tab/public/interfaces",
    "//mojo/application/public/cpp:test_support",
    "//ui/mojo/geometry:interfaces",
    "//ui/mojo/geometry:util",
  ]

  data_deps = [ "//components/view_manager" ]
}