| 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.) |
| 11 mojo_edk_source_set("util") { | 11 mojo_edk_source_set("util") { |
| 12 sources = [ | 12 sources = [ |
| 13 "command_line.cc", | 13 "command_line.cc", |
| 14 "command_line.h", | 14 "command_line.h", |
| 15 "cond_var.cc", | 15 "cond_var.cc", |
| 16 "cond_var.h", | 16 "cond_var.h", |
| 17 "gtest_prod_utils.h", |
| 17 "logging_internal.cc", | 18 "logging_internal.cc", |
| 18 "logging_internal.h", | 19 "logging_internal.h", |
| 19 "make_unique.h", | 20 "make_unique.h", |
| 20 "mutex.cc", | 21 "mutex.cc", |
| 21 "mutex.h", | 22 "mutex.h", |
| 22 "ref_counted.h", | 23 "ref_counted.h", |
| 23 "ref_counted_internal.h", | 24 "ref_counted_internal.h", |
| 24 "ref_ptr.h", | 25 "ref_ptr.h", |
| 25 "ref_ptr_internal.h", | 26 "ref_ptr_internal.h", |
| 26 "scoped_file.h", | 27 "scoped_file.h", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ":util", | 97 ":util", |
| 97 "//testing/gtest", | 98 "//testing/gtest", |
| 98 ] | 99 ] |
| 99 | 100 |
| 100 mojo_edk_deps = [ | 101 mojo_edk_deps = [ |
| 101 "mojo/edk/platform:test_platform", | 102 "mojo/edk/platform:test_platform", |
| 102 "mojo/edk/system/test", | 103 "mojo/edk/system/test", |
| 103 "mojo/edk/system/test:perf", | 104 "mojo/edk/system/test:perf", |
| 104 ] | 105 ] |
| 105 } | 106 } |
| OLD | NEW |