| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("js") { | 5 source_set("js") { |
| 6 sources = [ | 6 sources = [ |
| 7 "constants.cc", | 7 "constants.cc", |
| 8 "constants.h", | 8 "constants.h", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "threading.js", | 24 "threading.js", |
| 25 "unicode.js", | 25 "unicode.js", |
| 26 "validator.js", | 26 "validator.js", |
| 27 ] | 27 ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 group("tests") { | 30 group("tests") { |
| 31 testonly = true | 31 testonly = true |
| 32 | 32 |
| 33 data = [ | 33 data = [ |
| 34 "binding_tests.js", |
| 34 "codec_unittests.js", | 35 "codec_unittests.js", |
| 36 "connection_tests.js", |
| 35 "core_unittests.js", | 37 "core_unittests.js", |
| 38 "interface_ptr_tests.js", |
| 39 "sample_service_tests.js", |
| 36 "struct_unittests.js", | 40 "struct_unittests.js", |
| 37 "test/validation_test_input_parser.js", | 41 "test/validation_test_input_parser.js", |
| 38 "union_unittests.js", | 42 "union_unittests.js", |
| 39 "validation_unittests.js", | 43 "validation_unittests.js", |
| 40 "//mojo/public/interfaces/bindings/tests/data/validation/", | 44 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 41 ] | 45 ] |
| 46 |
| 42 public_deps = [ | 47 public_deps = [ |
| 43 ":bindings", | 48 ":bindings", |
| 44 ] | 49 ] |
| 45 } | 50 } |
| OLD | NEW |