| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 deps = [ | 76 deps = [ |
| 77 "//mojo/public/interfaces/bindings:new_bindings__generator", | 77 "//mojo/public/interfaces/bindings:new_bindings__generator", |
| 78 ] | 78 ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 group("tests") { | 81 group("tests") { |
| 82 testonly = true | 82 testonly = true |
| 83 | 83 |
| 84 data = [ | 84 data = [ |
| 85 "//mojo/public/interfaces/bindings/tests/data/validation/", | |
| 86 "tests/core_unittest.js", | 85 "tests/core_unittest.js", |
| 87 "tests/validation_test_input_parser.js", | |
| 88 "tests/validation_unittest.js", | |
| 89 ] | 86 ] |
| 90 | 87 |
| 91 public_deps = [ | 88 public_deps = [ |
| 92 ":bindings", | 89 ":bindings", |
| 93 ] | 90 ] |
| 94 } | 91 } |
| OLD | NEW |