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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "raw_channel.cc", | 81 "raw_channel.cc", |
82 "raw_channel.h", | 82 "raw_channel.h", |
83 "raw_channel_posix.cc", | 83 "raw_channel_posix.cc", |
84 "raw_channel_win.cc", | 84 "raw_channel_win.cc", |
85 "shared_buffer_dispatcher.cc", | 85 "shared_buffer_dispatcher.cc", |
86 "shared_buffer_dispatcher.h", | 86 "shared_buffer_dispatcher.h", |
87 "simple_dispatcher.cc", | 87 "simple_dispatcher.cc", |
88 "simple_dispatcher.h", | 88 "simple_dispatcher.h", |
89 "transport_data.cc", | 89 "transport_data.cc", |
90 "transport_data.h", | 90 "transport_data.h", |
| 91 "unique_identifier.cc", |
| 92 "unique_identifier.h", |
91 "waiter.cc", | 93 "waiter.cc", |
92 "waiter.h", | 94 "waiter.h", |
93 ] | 95 ] |
94 | 96 |
95 defines = [ | 97 defines = [ |
96 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 98 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
97 "MOJO_SYSTEM_IMPLEMENTATION", | 99 "MOJO_SYSTEM_IMPLEMENTATION", |
98 ] | 100 ] |
99 | 101 |
100 all_dependent_configs = [ ":system_config" ] | 102 all_dependent_configs = [ ":system_config" ] |
101 | 103 |
102 public_deps = [ | 104 public_deps = [ |
103 "../embedder", | 105 "../embedder", |
104 "../embedder:platform", | 106 "../embedder:platform", |
105 "../../public/c/system", | 107 "../../public/c/system", |
106 ] | 108 ] |
107 | 109 |
108 deps = [ | 110 deps = [ |
109 "//base", | 111 "//base", |
110 "//base/third_party/dynamic_annotations", | 112 "//base/third_party/dynamic_annotations", |
| 113 "//crypto", |
111 ] | 114 ] |
112 | 115 |
113 allow_circular_includes_from = [ "../embedder" ] | 116 allow_circular_includes_from = [ "../embedder" ] |
114 } | 117 } |
115 | 118 |
116 mojo_edk_source_set("test_utils") { | 119 mojo_edk_source_set("test_utils") { |
117 testonly = true | 120 testonly = true |
118 | 121 |
119 sources = [ | 122 sources = [ |
120 "test_utils.cc", | 123 "test_utils.cc", |
(...skipping 26 matching lines...) Expand all Loading... |
147 "message_pipe_test_utils.h", | 150 "message_pipe_test_utils.h", |
148 "message_pipe_unittest.cc", | 151 "message_pipe_unittest.cc", |
149 "multiprocess_message_pipe_unittest.cc", | 152 "multiprocess_message_pipe_unittest.cc", |
150 "options_validation_unittest.cc", | 153 "options_validation_unittest.cc", |
151 "platform_handle_dispatcher_unittest.cc", | 154 "platform_handle_dispatcher_unittest.cc", |
152 "raw_channel_unittest.cc", | 155 "raw_channel_unittest.cc", |
153 "remote_message_pipe_unittest.cc", | 156 "remote_message_pipe_unittest.cc", |
154 "run_all_unittests.cc", | 157 "run_all_unittests.cc", |
155 "shared_buffer_dispatcher_unittest.cc", | 158 "shared_buffer_dispatcher_unittest.cc", |
156 "simple_dispatcher_unittest.cc", | 159 "simple_dispatcher_unittest.cc", |
| 160 "unique_identifier_unittest.cc", |
157 "waiter_test_utils.cc", | 161 "waiter_test_utils.cc", |
158 "waiter_test_utils.h", | 162 "waiter_test_utils.h", |
159 "waiter_unittest.cc", | 163 "waiter_unittest.cc", |
160 ] | 164 ] |
161 | 165 |
162 deps = [ | 166 deps = [ |
163 ":system", | 167 ":system", |
164 ":test_utils", | 168 ":test_utils", |
165 "../embedder:embedder_unittests", | 169 "../embedder:embedder_unittests", |
166 "../test:test_support", | 170 "../test:test_support", |
(...skipping 29 matching lines...) Expand all Loading... |
196 } | 200 } |
197 | 201 |
198 if (is_android) { | 202 if (is_android) { |
199 unittest_apk("mojo_system_unittests_apk") { | 203 unittest_apk("mojo_system_unittests_apk") { |
200 deps = [ | 204 deps = [ |
201 ":mojo_system_unittests", | 205 ":mojo_system_unittests", |
202 ] | 206 ] |
203 unittests_dep = ":mojo_system_unittests" | 207 unittests_dep = ":mojo_system_unittests" |
204 } | 208 } |
205 } | 209 } |
OLD | NEW |