| 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 # Library of basic things not provided by the C/C++ standard libraries. (These | 7 # Library of basic things not provided by the C/C++ standard libraries. (These |
| 8 # are mostly platform independent. Note: This must not depend on | 8 # are mostly platform independent. Note: This must not depend on |
| 9 # //mojo/edk/platform. TODO(vtl): Maybe the things that aren't really platform | 9 # //mojo/edk/platform. TODO(vtl): Maybe the things that aren't really platform |
| 10 # independent should be moved to //mojo/edk/platform.) | 10 # independent should be moved to //mojo/edk/platform.) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "string_printf.h", | 31 "string_printf.h", |
| 32 "thread_annotations.h", | 32 "thread_annotations.h", |
| 33 "thread_checker.h", | 33 "thread_checker.h", |
| 34 "waitable_event.cc", | 34 "waitable_event.cc", |
| 35 "waitable_event.h", | 35 "waitable_event.h", |
| 36 "weak_ptr.h", | 36 "weak_ptr.h", |
| 37 "weak_ptr_internal.cc", | 37 "weak_ptr_internal.cc", |
| 38 "weak_ptr_internal.h", | 38 "weak_ptr_internal.h", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 41 mojo_sdk_public_deps = [ |
| 42 "mojo/public/c:common", |
| 43 "mojo/public/cpp/system", |
| 44 ] |
| 42 } | 45 } |
| 43 | 46 |
| 44 # Unit tests for :util. For testing purposes, allow dependence on | 47 # Unit tests for :util. For testing purposes, allow dependence on |
| 45 # //mojo/edk/platform; however, using //mojo/edk/platform requires choosing an | 48 # //mojo/edk/platform; however, using //mojo/edk/platform requires choosing an |
| 46 # implementation to get a test binary, which is done below in | 49 # implementation to get a test binary, which is done below in |
| 47 # :mojo_edk_util_unittests. | 50 # :mojo_edk_util_unittests. |
| 48 mojo_edk_source_set("unittests") { | 51 mojo_edk_source_set("unittests") { |
| 49 testonly = true | 52 testonly = true |
| 50 | 53 |
| 51 sources = [ | 54 sources = [ |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ":util", | 100 ":util", |
| 98 "//testing/gtest", | 101 "//testing/gtest", |
| 99 ] | 102 ] |
| 100 | 103 |
| 101 mojo_edk_deps = [ | 104 mojo_edk_deps = [ |
| 102 "mojo/edk/platform:test_platform", | 105 "mojo/edk/platform:test_platform", |
| 103 "mojo/edk/system/test", | 106 "mojo/edk/system/test", |
| 104 "mojo/edk/system/test:perf", | 107 "mojo/edk/system/test:perf", |
| 105 ] | 108 ] |
| 106 } | 109 } |
| OLD | NEW |