mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
|
# Copyright 2018 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("usb") {
|
||
|
# Ideally, this mojom file should be compiled directly in "mojom_platform"
|
||
|
# target in the parent directory. But as we need |scramble_message_ids| to
|
||
|
# be "false" for its mojom JS file will be used in external WPT layout tests.
|
||
|
# To limit this option's influence scope, we make it a separate target.
|
||
|
sources = [
|
||
|
"web_usb_service.mojom",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//mojo/public/mojom/base",
|
||
|
|
||
|
# TODO(donna.wu@intel.com): Change the following line to //service/device/
|
||
|
# after it has been moved to //services/device.
|
||
|
"//device/usb/public/mojom",
|
||
|
]
|
||
|
|
||
|
# USB Mojom interfaces are exposed publicly to layout tests which use
|
||
|
# prepackaged redistributable JS bindings. It is therefore not desirable to
|
||
|
# scramble these messages.
|
||
|
scramble_message_ids = false
|
||
|
|
||
|
export_class_attribute = "BLINK_COMMON_EXPORT"
|
||
|
export_define = "BLINK_COMMON_IMPLEMENTATION=1"
|
||
|
export_header = "third_party/blink/common/common_export.h"
|
||
|
|
||
|
export_class_attribute_blink = "PLATFORM_EXPORT"
|
||
|
export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
|
||
|
export_header_blink = "third_party/blink/renderer/platform/platform_export.h"
|
||
|
}
|