aboutsummaryrefslogtreecommitdiff
path: root/mojo/public/js/BUILD.gn
blob: eda7e04d07ef67f2e819bcbfb6fa1da79803f8bc (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
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2014 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("js") {
  sources = [
    "constants.cc",
    "constants.h",
  ]
}

group("bindings") {
  data = [
    "bindings.js",
    "buffer.js",
    "codec.js",
    "connection.js",
    "connector.js",
    "constants.cc",
    "constants.h",
    "core.js",
    "router.js",
    "support.js",
    "threading.js",
    "unicode.js",
    "validator.js",
  ]
}

group("tests") {
  testonly = true

  data = [
    "codec_unittests.js",
    "core_unittests.js",
    "struct_unittests.js",
    "test/validation_test_input_parser.js",
    "union_unittests.js",
    "validation_unittests.js",
    "//mojo/public/interfaces/bindings/tests/data/validation/",
  ]
  public_deps = [
    ":bindings",
  ]
}