Home | History | Annotate | Download | only in js
      1 # Copyright 2014 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 source_set("js") {
      6   sources = [
      7     "constants.cc",
      8     "constants.h",
      9   ]
     10 }
     11 
     12 group("bindings") {
     13   data = [
     14     "bindings.js",
     15     "buffer.js",
     16     "codec.js",
     17     "connection.js",
     18     "connector.js",
     19     "constants.cc",
     20     "constants.h",
     21     "core.js",
     22     "router.js",
     23     "support.js",
     24     "threading.js",
     25     "unicode.js",
     26     "validator.js",
     27   ]
     28 }
     29 
     30 group("tests") {
     31   testonly = true
     32 
     33   data = [
     34     "codec_unittests.js",
     35     "core_unittests.js",
     36     "struct_unittests.js",
     37     "test/validation_test_input_parser.js",
     38     "union_unittests.js",
     39     "validation_unittests.js",
     40     "//mojo/public/interfaces/bindings/tests/data/validation/",
     41   ]
     42   public_deps = [
     43     ":bindings",
     44   ]
     45 }
     46