| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # "Completes" the implementation of //mojo/edk/platform (i.e., implements those | 7 # "Completes" the implementation of //mojo/edk/platform (i.e., implements those |
| 8 # things that //mojo/edk/platform declares but doesn't define), using //base. | 8 # things that //mojo/edk/platform declares but doesn't define), using //base. |
| 9 mojo_edk_source_set("base_edk") { | 9 mojo_edk_source_set("base_edk") { |
| 10 sources = [ | 10 sources = [ |
| 11 "io_thread.cc", | 11 "io_thread.cc", |
| 12 "platform_handle_watcher_impl.cc", | 12 "platform_handle_watcher_impl.cc", |
| 13 "platform_handle_watcher_impl.h", | 13 "platform_handle_watcher_impl.h", |
| 14 "platform_message_loop_for_io_impl.cc", | 14 "platform_message_loop_for_io_impl.cc", |
| 15 "platform_message_loop_for_io_impl.h", | 15 "platform_message_loop_for_io_impl.h", |
| 16 "platform_message_loop_impl.cc", | 16 "platform_message_loop_impl.cc", |
| 17 "platform_message_loop_impl.h", | 17 "platform_message_loop_impl.h", |
| 18 "platform_pipe.cc", |
| 18 "platform_task_runner_impl.cc", | 19 "platform_task_runner_impl.cc", |
| 19 "platform_task_runner_impl.h", | 20 "platform_task_runner_impl.h", |
| 20 "random.cc", | 21 "random.cc", |
| 21 "thread_utils.cc", | 22 "thread_utils.cc", |
| 22 "time_ticks.cc", | 23 "time_ticks.cc", |
| 23 ] | 24 ] |
| 24 | 25 |
| 25 deps = [ | 26 deps = [ |
| 26 "//base", | 27 "//base", |
| 27 ] | 28 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 # Tests //mojo/edk/platform and //mojo/edk/platform:test_platform using the | 74 # Tests //mojo/edk/platform and //mojo/edk/platform:test_platform using the |
| 74 # implementation of :platform provided by :base_edk and :test_base_edk. | 75 # implementation of :platform provided by :base_edk and :test_base_edk. |
| 75 mojo_edk_unittests("mojo_edk_platform_unittests") { | 76 mojo_edk_unittests("mojo_edk_platform_unittests") { |
| 76 deps = [ | 77 deps = [ |
| 77 ":base_edk", | 78 ":base_edk", |
| 78 ":test_base_edk", | 79 ":test_base_edk", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 mojo_edk_deps = [ "mojo/edk/platform:unittests" ] | 82 mojo_edk_deps = [ "mojo/edk/platform:unittests" ] |
| 82 } | 83 } |
| OLD | NEW |