mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
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.
|
|
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
mojom("interfaces") {
|
|
sources = [
|
|
"cookie_manager.mojom",
|
|
"cors.mojom",
|
|
"data_pipe_getter.mojom",
|
|
"fetch_api.mojom",
|
|
"http_request_headers.mojom",
|
|
"mutable_network_traffic_annotation_tag.mojom",
|
|
"mutable_partial_network_traffic_annotation_tag.mojom",
|
|
"network_change_manager.mojom",
|
|
"restricted_cookie_manager.mojom",
|
|
]
|
|
|
|
public_deps = [
|
|
"//mojo/common:common_custom_types",
|
|
"//url/mojo:url_mojom_gurl",
|
|
]
|
|
|
|
# TODO(crbug/598073): When moving the service implementation to
|
|
# //services/network, add the correct values for export_class_attribute /
|
|
# export_define / export_header here. Context in https://crrev.com/2225673002.
|
|
|
|
if (!is_ios) {
|
|
export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
|
|
export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
|
|
export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
|
|
}
|
|
}
|