Chromium Code Reviews| 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 } |
| 11 | 11 |
| 12 group("bindings") { | 12 group("bindings") { |
| 13 data = [ | 13 data = [ |
| 14 "bindings.js", | 14 "bindings.js", |
| 15 "buffer.js", | 15 "buffer.js", |
| 16 "codec.js", | 16 "codec.js", |
| 17 "connector.js", | 17 "connector.js", |
| 18 "constants.cc", | 18 "constants.cc", |
| 19 "constants.h", | 19 "constants.h", |
| 20 "core.js", | 20 "core.js", |
| 21 "interface_types.js", | 21 "interface_types.js", |
| 22 "router.js", | 22 "router.js", |
| 23 "support.js", | 23 "support.js", |
| 24 "threading.js", | 24 "threading.js", |
| 25 "unicode.js", | 25 "unicode.js", |
| 26 "validator.js", | 26 "validator.js", |
| 27 "lib/control_message_proxy.js", | |
|
yzshen1
2017/02/11 01:11:28
Please order files in this list alphabetically.
wangjimmy
2017/02/13 20:43:06
Done.
| |
| 28 "lib/control_message_handler.js", | |
| 27 ] | 29 ] |
| 28 } | 30 } |
| 29 | 31 |
| 30 group("tests") { | 32 group("tests") { |
| 31 testonly = true | 33 testonly = true |
| 32 | 34 |
| 33 data = [ | 35 data = [ |
| 34 "tests/binding_unittest.js", | 36 "tests/binding_unittest.js", |
| 35 "tests/codec_unittest.js", | 37 "tests/codec_unittest.js", |
| 36 "tests/connection_unittest.js", | 38 "tests/connection_unittest.js", |
| 37 "tests/core_unittest.js", | 39 "tests/core_unittest.js", |
| 38 "tests/interface_ptr_unittest.js", | 40 "tests/interface_ptr_unittest.js", |
| 39 "tests/sample_service_unittest.js", | 41 "tests/sample_service_unittest.js", |
| 40 "tests/struct_unittest.js", | 42 "tests/struct_unittest.js", |
| 41 "tests/union_unittest.js", | 43 "tests/union_unittest.js", |
| 42 "tests/validation_test_input_parser.js", | 44 "tests/validation_test_input_parser.js", |
| 43 "tests/validation_unittest.js", | 45 "tests/validation_unittest.js", |
| 44 "//mojo/public/interfaces/bindings/tests/data/validation/", | 46 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 45 ] | 47 ] |
| 46 | 48 |
| 47 public_deps = [ | 49 public_deps = [ |
| 48 ":bindings", | 50 ":bindings", |
| 49 ] | 51 ] |
| 50 } | 52 } |
| OLD | NEW |