| 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 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" | 5 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" |
| 6 | 6 |
| 7 source_set("js") { | 7 source_set("js") { |
| 8 sources = [ | 8 sources = [ |
| 9 "constants.cc", | 9 "constants.cc", |
| 10 "constants.h", | 10 "constants.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//mojo/public/interfaces/bindings:bindings__generator", | 33 "//mojo/public/interfaces/bindings:bindings__generator", |
| 34 ] | 34 ] |
| 35 } | 35 } |
| 36 | 36 |
| 37 group("tests") { | 37 group("tests") { |
| 38 testonly = true | 38 testonly = true |
| 39 | 39 |
| 40 data = [ | 40 data = [ |
| 41 "//mojo/public/interfaces/bindings/tests/data/validation/", | |
| 42 "tests/codec_unittest.js", | 41 "tests/codec_unittest.js", |
| 43 "tests/connection_unittest.js", | 42 "tests/connection_unittest.js", |
| 44 "tests/core_unittest.js", | 43 "tests/core_unittest.js", |
| 45 "tests/interface_ptr_unittest.js", | 44 "tests/interface_ptr_unittest.js", |
| 46 "tests/sample_service_unittest.js", | 45 "tests/sample_service_unittest.js", |
| 47 "tests/struct_unittest.js", | 46 "tests/struct_unittest.js", |
| 48 "tests/union_unittest.js", | 47 "tests/union_unittest.js", |
| 49 "tests/validation_test_input_parser.js", | |
| 50 "tests/validation_unittest.js", | |
| 51 ] | 48 ] |
| 52 | 49 |
| 53 public_deps = [ | 50 public_deps = [ |
| 54 ":bindings", | 51 ":bindings", |
| 55 ] | 52 ] |
| 56 } | 53 } |
| OLD | NEW |