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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("../../../mojo/public/tools/bindings/mojom.gni") | 6 import("../../../mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "message_pipe_dispatcher.h", | 64 "message_pipe_dispatcher.h", |
65 "options_validation.h", | 65 "options_validation.h", |
66 "platform_handle_dispatcher.cc", | 66 "platform_handle_dispatcher.cc", |
67 "platform_handle_dispatcher.h", | 67 "platform_handle_dispatcher.h", |
68 "raw_channel.cc", | 68 "raw_channel.cc", |
69 "raw_channel.h", | 69 "raw_channel.h", |
70 "raw_channel_posix.cc", | 70 "raw_channel_posix.cc", |
71 "raw_channel_win.cc", | 71 "raw_channel_win.cc", |
72 "shared_buffer_dispatcher.cc", | 72 "shared_buffer_dispatcher.cc", |
73 "shared_buffer_dispatcher.h", | 73 "shared_buffer_dispatcher.h", |
74 "simple_broker.cc", | |
75 "simple_broker.h", | |
76 "simple_dispatcher.cc", | 74 "simple_dispatcher.cc", |
77 "simple_dispatcher.h", | 75 "simple_dispatcher.h", |
78 "transport_data.cc", | 76 "transport_data.cc", |
79 "transport_data.h", | 77 "transport_data.h", |
80 "waiter.cc", | 78 "waiter.cc", |
81 "waiter.h", | 79 "waiter.h", |
82 ] | 80 ] |
83 | 81 |
84 defines = [ | 82 defines = [ |
85 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 83 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 "../test:test_support", | 200 "../test:test_support", |
203 "//base", | 201 "//base", |
204 "//base/test:test_support", | 202 "//base/test:test_support", |
205 "//testing/gtest", | 203 "//testing/gtest", |
206 | 204 |
207 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 205 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
208 # declared in third party only for now. | 206 # declared in third party only for now. |
209 "//third_party/mojo/src/mojo/edk/system", | 207 "//third_party/mojo/src/mojo/edk/system", |
210 ] | 208 ] |
211 } | 209 } |
OLD | NEW |