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 component("base") { | 5 component("base") { |
6 external = true | 6 external = true |
7 sources = [ | 7 sources = [ |
8 "../build/build_config.h", | 8 "../build/build_config.h", |
9 "third_party/dmg_fp/dmg_fp.h", | 9 "third_party/dmg_fp/dmg_fp.h", |
10 "third_party/dmg_fp/g_fmt.cc", | 10 "third_party/dmg_fp/g_fmt.cc", |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 "threading/thread.h", | 552 "threading/thread.h", |
553 "threading/thread_checker.h", | 553 "threading/thread_checker.h", |
554 "threading/thread_checker_impl.cc", | 554 "threading/thread_checker_impl.cc", |
555 "threading/thread_checker_impl.h", | 555 "threading/thread_checker_impl.h", |
556 "threading/thread_collision_warner.cc", | 556 "threading/thread_collision_warner.cc", |
557 "threading/thread_collision_warner.h", | 557 "threading/thread_collision_warner.h", |
558 "threading/thread_id_name_manager.cc", | 558 "threading/thread_id_name_manager.cc", |
559 "threading/thread_id_name_manager.h", | 559 "threading/thread_id_name_manager.h", |
560 "threading/thread_local.h", | 560 "threading/thread_local.h", |
561 "threading/thread_local_posix.cc", | 561 "threading/thread_local_posix.cc", |
| 562 "threading/thread_local_storage.cc", |
562 "threading/thread_local_storage.h", | 563 "threading/thread_local_storage.h", |
563 "threading/thread_local_storage_posix.cc", | 564 "threading/thread_local_storage_posix.cc", |
564 "threading/thread_local_storage_win.cc", | 565 "threading/thread_local_storage_win.cc", |
565 "threading/thread_local_win.cc", | 566 "threading/thread_local_win.cc", |
566 "threading/thread_restrictions.h", | 567 "threading/thread_restrictions.h", |
567 "threading/thread_restrictions.cc", | 568 "threading/thread_restrictions.cc", |
568 "threading/watchdog.cc", | 569 "threading/watchdog.cc", |
569 "threading/watchdog.h", | 570 "threading/watchdog.h", |
570 "threading/worker_pool.h", | 571 "threading/worker_pool.h", |
571 "threading/worker_pool.cc", | 572 "threading/worker_pool.cc", |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1026 static_library("run_all_unittests") { | 1027 static_library("run_all_unittests") { |
1027 external = true | 1028 external = true |
1028 sources = [ | 1029 sources = [ |
1029 "test/run_all_unittests.cc", | 1030 "test/run_all_unittests.cc", |
1030 ] | 1031 ] |
1031 deps = [ | 1032 deps = [ |
1032 ":test_support_base", | 1033 ":test_support_base", |
1033 ] | 1034 ] |
1034 } | 1035 } |
1035 | 1036 |
OLD | NEW |