| 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 mojo_edk_source_set("util") { | 7 mojo_edk_source_set("util") { |
| 8 sources = [ | 8 sources = [ |
| 9 "command_line.cc", | 9 "command_line.cc", |
| 10 "command_line.h", | 10 "command_line.h", |
| 11 "cond_var.cc", | 11 "cond_var.cc", |
| 12 "cond_var.h", | 12 "cond_var.h", |
| 13 "logging_internal.cc", | 13 "logging_internal.cc", |
| 14 "logging_internal.h", | 14 "logging_internal.h", |
| 15 "make_unique.h", | 15 "make_unique.h", |
| 16 "mutex.cc", | 16 "mutex.cc", |
| 17 "mutex.h", | 17 "mutex.h", |
| 18 "ref_counted.h", | 18 "ref_counted.h", |
| 19 "ref_counted_internal.h", | 19 "ref_counted_internal.h", |
| 20 "ref_ptr.h", | 20 "ref_ptr.h", |
| 21 "ref_ptr_internal.h", | 21 "ref_ptr_internal.h", |
| 22 "scoped_file.h", | 22 "scoped_file.h", |
| 23 "string_number_conversions.cc", |
| 24 "string_number_conversions.h", |
| 23 "string_printf.cc", | 25 "string_printf.cc", |
| 24 "string_printf.h", | 26 "string_printf.h", |
| 25 "thread_annotations.h", | 27 "thread_annotations.h", |
| 26 "thread_checker.h", | 28 "thread_checker.h", |
| 27 "waitable_event.cc", | 29 "waitable_event.cc", |
| 28 "waitable_event.h", | 30 "waitable_event.h", |
| 29 ] | 31 ] |
| 30 | 32 |
| 31 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 33 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] |
| 32 } | 34 } |
| 33 | 35 |
| 34 mojo_edk_unittests("mojo_edk_util_unittests") { | 36 mojo_edk_unittests("mojo_edk_util_unittests") { |
| 35 sources = [ | 37 sources = [ |
| 36 "command_line_unittest.cc", | 38 "command_line_unittest.cc", |
| 37 "cond_var_unittest.cc", | 39 "cond_var_unittest.cc", |
| 38 "mutex_unittest.cc", | 40 "mutex_unittest.cc", |
| 39 "ref_counted_unittest.cc", | 41 "ref_counted_unittest.cc", |
| 42 "string_number_conversions_unittest.cc", |
| 40 "string_printf_unittest.cc", | 43 "string_printf_unittest.cc", |
| 41 "thread_annotations_unittest.cc", | 44 "thread_annotations_unittest.cc", |
| 42 "thread_checker_unittest.cc", | 45 "thread_checker_unittest.cc", |
| 43 "waitable_event_unittest.cc", | 46 "waitable_event_unittest.cc", |
| 44 ] | 47 ] |
| 45 | 48 |
| 46 deps = [ | 49 deps = [ |
| 47 ":util", | 50 ":util", |
| 48 "//testing/gtest", | 51 "//testing/gtest", |
| 49 ] | 52 ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 64 deps = [ | 67 deps = [ |
| 65 ":util", | 68 ":util", |
| 66 "//testing/gtest", | 69 "//testing/gtest", |
| 67 ] | 70 ] |
| 68 | 71 |
| 69 mojo_edk_deps = [ | 72 mojo_edk_deps = [ |
| 70 "mojo/edk/system/test", | 73 "mojo/edk/system/test", |
| 71 "mojo/edk/system/test:perf", | 74 "mojo/edk/system/test:perf", |
| 72 ] | 75 ] |
| 73 } | 76 } |
| OLD | NEW |