summaryrefslogtreecommitdiff
path: root/chromium/chromecast/common/BUILD.gn
blob: 14d6618c39253fec0f2dd956606264f922b7f842 (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
# 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("//chromecast/chromecast.gni")

source_set("common") {
  sources = [
    "cast_content_client.cc",
    "cast_content_client.h",
    "cast_resource_delegate.cc",
    "cast_resource_delegate.h",
    "global_descriptors.h",
    "platform_client_auth.h",
  ]

  if (chromecast_branding == "public") {
    sources += [ "platform_client_auth_simple.cc" ]
  }

  deps = [
    "//base",
    "//chromecast/base",
    "//chromecast/base:cast_version",
    "//content/public/common",
    "//ui/base",
    "//ui/gfx",
    "//url:url",
  ]
}