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 import("//testing/test.gni") | 6 import("//testing/test.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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 "slave_connection_manager.h", | 107 "slave_connection_manager.h", |
108 "thread_annotations.h", | 108 "thread_annotations.h", |
109 "transport_data.cc", | 109 "transport_data.cc", |
110 "transport_data.h", | 110 "transport_data.h", |
111 "unique_identifier.cc", | 111 "unique_identifier.cc", |
112 "unique_identifier.h", | 112 "unique_identifier.h", |
113 "waiter.cc", | 113 "waiter.cc", |
114 "waiter.h", | 114 "waiter.h", |
115 ] | 115 ] |
116 | 116 |
117 defines = [ | 117 defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ] |
118 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | |
119 "MOJO_SYSTEM_IMPLEMENTATION", | |
120 ] | |
121 | 118 |
122 all_dependent_configs = [ ":system_config" ] | 119 all_dependent_configs = [ ":system_config" ] |
123 | 120 |
124 public_deps = [ | 121 public_deps = [ |
125 "../embedder", | 122 "../embedder", |
126 "../embedder:delegates", | 123 "../embedder:delegates", |
127 "../embedder:platform", | 124 "../embedder:platform", |
128 "../util", | 125 "../util", |
129 "../../public/c/system", | 126 "../../public/c/system", |
130 "../../public/cpp/system", | 127 "../../public/cpp/system", |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 deps = [ | 235 deps = [ |
239 ":system", | 236 ":system", |
240 ":test_utils", | 237 ":test_utils", |
241 "../test:test_support", | 238 "../test:test_support", |
242 "//base", | 239 "//base", |
243 "//base/test:test_support", | 240 "//base/test:test_support", |
244 "//base/test:test_support_perf", | 241 "//base/test:test_support_perf", |
245 "//testing/gtest", | 242 "//testing/gtest", |
246 ] | 243 ] |
247 } | 244 } |
OLD | NEW |