| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 config("base_libs") { | 5 config("base_libs") { |
| 6 if (!is_win) { | 6 if (!is_win) { |
| 7 ldflags = [ "-ldl" ] | 7 ldflags = [ "-ldl" ] |
| 8 } | 8 } |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "bind_internal.h", | 85 "bind_internal.h", |
| 86 "bind_internal_win.h", | 86 "bind_internal_win.h", |
| 87 "bits.h", | 87 "bits.h", |
| 88 "build_time.cc", | 88 "build_time.cc", |
| 89 "build_time.h", | 89 "build_time.h", |
| 90 "callback.h", | 90 "callback.h", |
| 91 "callback_helpers.h", | 91 "callback_helpers.h", |
| 92 "callback_internal.cc", | 92 "callback_internal.cc", |
| 93 "callback_internal.h", | 93 "callback_internal.h", |
| 94 "cancelable_callback.h", | 94 "cancelable_callback.h", |
| 95 "chromeos/chromeos_version.cc", | |
| 96 "chromeos/chromeos_version.h", | |
| 97 "command_line.cc", | 95 "command_line.cc", |
| 98 "command_line.h", | 96 "command_line.h", |
| 99 "compiler_specific.h", | 97 "compiler_specific.h", |
| 100 "containers/hash_tables.h", | 98 "containers/hash_tables.h", |
| 101 "containers/linked_list.h", | 99 "containers/linked_list.h", |
| 102 "containers/mru_cache.h", | 100 "containers/mru_cache.h", |
| 103 "containers/small_map.h", | 101 "containers/small_map.h", |
| 104 "containers/stack_container.h", | 102 "containers/stack_container.h", |
| 105 "cpu.cc", | 103 "cpu.cc", |
| 106 "cpu.h", | 104 "cpu.h", |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 static_library("run_all_unittests") { | 1010 static_library("run_all_unittests") { |
| 1013 external = true | 1011 external = true |
| 1014 sources = [ | 1012 sources = [ |
| 1015 "test/run_all_unittests.cc", | 1013 "test/run_all_unittests.cc", |
| 1016 ] | 1014 ] |
| 1017 deps = [ | 1015 deps = [ |
| 1018 ":test_support_base", | 1016 ":test_support_base", |
| 1019 ] | 1017 ] |
| 1020 } | 1018 } |
| 1021 | 1019 |
| OLD | NEW |