mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
28 lines
811 B
Plaintext
28 lines
811 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")
|
|
|
|
cast_source_set("media") {
|
|
sources = [
|
|
"audio_post_processor_shlib.h",
|
|
"cast_decoder_buffer.h",
|
|
"cast_decrypt_config.h",
|
|
"cast_key_system.h",
|
|
"decoder_config.h",
|
|
"media_pipeline_backend.h",
|
|
"media_pipeline_device_params.h",
|
|
"stream_id.h",
|
|
]
|
|
|
|
public_configs = [ ":public_headers" ]
|
|
}
|
|
|
|
# Any target which includes headers in ":media" should include it in its deps
|
|
# so that it inherits the config below. This allows headers in ":media" to
|
|
# include other interfaces without an absolute path from src.
|
|
config("public_headers") {
|
|
include_dirs = [ "//chromecast/public" ]
|
|
}
|