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 import("rules.gni") | 5 import("rules.gni") |
6 | 6 |
7 go_library("application") { | 7 go_library("application") { |
8 sources = [ | 8 sources = [ |
9 "//mojo/public/go/application/application_impl.go", | 9 "//mojo/public/go/application/application_impl.go", |
10 "//mojo/public/go/application/connection.go", | 10 "//mojo/public/go/application/connection.go", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 testonly = true | 59 testonly = true |
60 deps = [ | 60 deps = [ |
61 ":system_test", | 61 ":system_test", |
62 ] | 62 ] |
63 } | 63 } |
64 go_test_binary("system_test") { | 64 go_test_binary("system_test") { |
65 sources = [ | 65 sources = [ |
66 "tests/application_impl_test.go", | 66 "tests/application_impl_test.go", |
67 "tests/async_waiter_test.go", | 67 "tests/async_waiter_test.go", |
68 "tests/encoding_test.go", | 68 "tests/encoding_test.go", |
| 69 "tests/enums_test.go", |
69 "tests/interface_test.go", | 70 "tests/interface_test.go", |
70 "tests/message_test.go", | 71 "tests/message_test.go", |
71 "tests/regression_test.go", | 72 "tests/regression_test.go", |
72 "tests/request_response_test.go", | 73 "tests/request_response_test.go", |
73 "tests/router_test.go", | 74 "tests/router_test.go", |
74 "tests/system_test.go", | 75 "tests/system_test.go", |
75 "tests/testutil.go", | 76 "tests/testutil.go", |
76 "tests/testutil_test.go", | 77 "tests/testutil_test.go", |
77 "tests/union_test.go", | 78 "tests/union_test.go", |
78 "tests/validation_test.go", | 79 "tests/validation_test.go", |
79 "tests/validation_type_test.go", | 80 "tests/validation_type_test.go", |
80 ] | 81 ] |
81 static_library_sources = [ | 82 static_library_sources = [ |
82 "c_embedder/c_embedder.cc", | 83 "c_embedder/c_embedder.cc", |
83 "c_embedder/c_embedder.h", | 84 "c_embedder/c_embedder.h", |
84 ] | 85 ] |
85 deps = [ | 86 deps = [ |
86 ":application", | 87 ":application", |
87 ":platform_cgo", | 88 ":platform_cgo", |
88 "//examples/echo", | 89 "//examples/echo", |
89 "//mojo/edk/base_edk", | 90 "//mojo/edk/base_edk", |
90 "//mojo/edk/system", | 91 "//mojo/edk/system", |
91 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 92 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
92 ] | 93 ] |
93 } | 94 } |
94 } | 95 } |
OLD | NEW |