mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
30 lines
899 B
Plaintext
30 lines
899 B
Plaintext
# Copyright 2017 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.
|
|
|
|
source_set("media") {
|
|
# This target is a logical part of the platform and only the platform target
|
|
# should depend on it.
|
|
visibility = [ "//third_party/WebKit/Source/platform" ]
|
|
|
|
sources = [
|
|
"ResourceBundleHelper.cpp",
|
|
"ResourceBundleHelper.h",
|
|
]
|
|
|
|
configs += [
|
|
"//third_party/WebKit/Source:blink_pch",
|
|
"//third_party/WebKit/Source:config",
|
|
"//third_party/WebKit/Source:non_test_config",
|
|
"//third_party/WebKit/Source:inside_blink",
|
|
"//third_party/WebKit/Source:features",
|
|
"//third_party/WebKit/Source/platform:blink_platform_implementation",
|
|
"//build/config/compiler:no_size_t_to_int_warning",
|
|
]
|
|
|
|
deps = [
|
|
"//third_party/zlib/google:compression_utils",
|
|
"//ui/base:base",
|
|
]
|
|
}
|