mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
36 lines
761 B
Plaintext
36 lines
761 B
Plaintext
# 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")
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
cast_source_set("common") {
|
|
sources = [
|
|
"cast_content_client.cc",
|
|
"cast_content_client.h",
|
|
"cast_resource_delegate.cc",
|
|
"cast_resource_delegate.h",
|
|
"global_descriptors.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//chromecast/base",
|
|
"//chromecast/base:cast_version",
|
|
"//chromecast/common/media",
|
|
"//content/public/common",
|
|
"//ui/base",
|
|
"//ui/gfx",
|
|
"//url:url",
|
|
]
|
|
}
|
|
|
|
if (!is_android) {
|
|
mojom("interfaces") {
|
|
sources = [
|
|
"memory_pressure.mojom",
|
|
]
|
|
}
|
|
}
|