summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/typed_arrays/BUILD.gn
blob: 19e064c3efe34bcc6fad483a8650b1a5f0ff890d (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
29
30
31
32
33
34
# 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("//third_party/blink/renderer/core/core.gni")

blink_core_sources("typed_arrays") {
  configs += [ "//build/config/compiler:noshadowing" ]

  sources = [
    "array_buffer/array_buffer_contents.cc",
    "array_buffer/array_buffer_contents.h",
    "array_buffer_view_helpers.h",
    "dom_array_buffer.cc",
    "dom_array_buffer.h",
    "dom_array_buffer_base.h",
    "dom_array_buffer_view.h",
    "dom_array_piece.cc",
    "dom_array_piece.h",
    "dom_data_view.cc",
    "dom_data_view.h",
    "dom_shared_array_buffer.cc",
    "dom_shared_array_buffer.h",
    "dom_typed_array.cc",
    "dom_typed_array.h",
    "flexible_array_buffer_view.h",
    "typed_flexible_array_buffer_view.h",
  ]

  deps = [ "//third_party/blink/renderer/core:core_generated" ]

  allow_circular_includes_from =
      [ "//third_party/blink/renderer/core:core_generated" ]
}