summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/serial/BUILD.gn
blob: db1e96d3167a8fc8dd1f79227b7a8a6b79707ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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("//third_party/blink/renderer/modules/modules.gni")

# The Serial API will not be supported on Android. Assert here to ensure it
# doesn't sneak back into the build.
assert(!is_android)

blink_modules_sources("serial") {
  sources = [
    "navigator_serial.cc",
    "navigator_serial.h",
    "serial.cc",
    "serial.h",
    "serial_connection_event.cc",
    "serial_connection_event.h",
    "serial_port.cc",
    "serial_port.h",
    "serial_port_underlying_sink.cc",
    "serial_port_underlying_sink.h",
    "serial_port_underlying_source.cc",
    "serial_port_underlying_source.h",
    "worker_navigator_serial.cc",
    "worker_navigator_serial.h",
  ]
}