| 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") |
| 11 } | 11 } |
| 12 | 12 |
| 13 mojo_edk_source_set("system") { | 13 mojo_edk_source_set("system") { |
| 14 sources = [ | 14 sources = [ |
| 15 "async_waiter.cc", | 15 "async_waiter.cc", |
| 16 "async_waiter.h", | 16 "async_waiter.h", |
| 17 "awakable.cc", |
| 17 "awakable.h", | 18 "awakable.h", |
| 18 "awakable_list.cc", | 19 "awakable_list.cc", |
| 19 "awakable_list.h", | 20 "awakable_list.h", |
| 20 "channel.cc", | 21 "channel.cc", |
| 21 "channel.h", | 22 "channel.h", |
| 22 "channel_endpoint.cc", | 23 "channel_endpoint.cc", |
| 23 "channel_endpoint.h", | 24 "channel_endpoint.h", |
| 24 "channel_endpoint_client.h", | 25 "channel_endpoint_client.h", |
| 25 "channel_endpoint_id.cc", | 26 "channel_endpoint_id.cc", |
| 26 "channel_endpoint_id.h", | 27 "channel_endpoint_id.h", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 # TODO(vtl): Add separate test targets for this. | 213 # TODO(vtl): Add separate test targets for this. |
| 213 "mojo/edk/util:perftests", | 214 "mojo/edk/util:perftests", |
| 214 | 215 |
| 215 "mojo/edk/base_edk", | 216 "mojo/edk/base_edk", |
| 216 "mojo/edk/base_edk:test_base_edk", | 217 "mojo/edk/base_edk:test_base_edk", |
| 217 "mojo/edk/system/test", | 218 "mojo/edk/system/test", |
| 218 "mojo/edk/system/test:perf", | 219 "mojo/edk/system/test:perf", |
| 219 "mojo/edk/test:test_support", | 220 "mojo/edk/test:test_support", |
| 220 ] | 221 ] |
| 221 } | 222 } |
| OLD | NEW |