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 import("//build/config/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 "threading/platform_thread.h", | 538 "threading/platform_thread.h", |
539 "threading/platform_thread_android.cc", | 539 "threading/platform_thread_android.cc", |
540 "threading/platform_thread_internal_posix.cc", | 540 "threading/platform_thread_internal_posix.cc", |
541 "threading/platform_thread_internal_posix.h", | 541 "threading/platform_thread_internal_posix.h", |
542 "threading/platform_thread_linux.cc", | 542 "threading/platform_thread_linux.cc", |
543 "threading/platform_thread_mac.mm", | 543 "threading/platform_thread_mac.mm", |
544 "threading/platform_thread_posix.cc", | 544 "threading/platform_thread_posix.cc", |
545 "threading/platform_thread_win.cc", | 545 "threading/platform_thread_win.cc", |
546 "threading/post_task_and_reply_impl.cc", | 546 "threading/post_task_and_reply_impl.cc", |
547 "threading/post_task_and_reply_impl.h", | 547 "threading/post_task_and_reply_impl.h", |
| 548 "threading/sequenced_task_runner_handle.cc", |
| 549 "threading/sequenced_task_runner_handle.h", |
548 "threading/sequenced_worker_pool.cc", | 550 "threading/sequenced_worker_pool.cc", |
549 "threading/sequenced_worker_pool.h", | 551 "threading/sequenced_worker_pool.h", |
550 "threading/simple_thread.cc", | 552 "threading/simple_thread.cc", |
551 "threading/simple_thread.h", | 553 "threading/simple_thread.h", |
552 "threading/thread.cc", | 554 "threading/thread.cc", |
553 "threading/thread.h", | 555 "threading/thread.h", |
554 "threading/thread_checker.h", | 556 "threading/thread_checker.h", |
555 "threading/thread_checker_impl.cc", | 557 "threading/thread_checker_impl.cc", |
556 "threading/thread_checker_impl.h", | 558 "threading/thread_checker_impl.h", |
557 "threading/thread_collision_warner.cc", | 559 "threading/thread_collision_warner.cc", |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1425 "template_util_unittest.cc", | 1427 "template_util_unittest.cc", |
1426 "test/histogram_tester_unittest.cc", | 1428 "test/histogram_tester_unittest.cc", |
1427 "test/icu_test_util.cc", | 1429 "test/icu_test_util.cc", |
1428 "test/icu_test_util.h", | 1430 "test/icu_test_util.h", |
1429 "test/test_pending_task_unittest.cc", | 1431 "test/test_pending_task_unittest.cc", |
1430 "test/test_reg_util_win_unittest.cc", | 1432 "test/test_reg_util_win_unittest.cc", |
1431 "test/trace_event_analyzer_unittest.cc", | 1433 "test/trace_event_analyzer_unittest.cc", |
1432 "test/user_action_tester_unittest.cc", | 1434 "test/user_action_tester_unittest.cc", |
1433 "threading/non_thread_safe_unittest.cc", | 1435 "threading/non_thread_safe_unittest.cc", |
1434 "threading/platform_thread_unittest.cc", | 1436 "threading/platform_thread_unittest.cc", |
| 1437 "threading/sequenced_task_runner_handle_unittest.cc", |
1435 "threading/sequenced_worker_pool_unittest.cc", | 1438 "threading/sequenced_worker_pool_unittest.cc", |
1436 "threading/simple_thread_unittest.cc", | 1439 "threading/simple_thread_unittest.cc", |
1437 "threading/thread_checker_unittest.cc", | 1440 "threading/thread_checker_unittest.cc", |
1438 "threading/thread_collision_warner_unittest.cc", | 1441 "threading/thread_collision_warner_unittest.cc", |
1439 "threading/thread_id_name_manager_unittest.cc", | 1442 "threading/thread_id_name_manager_unittest.cc", |
1440 "threading/thread_local_storage_unittest.cc", | 1443 "threading/thread_local_storage_unittest.cc", |
1441 "threading/thread_local_unittest.cc", | 1444 "threading/thread_local_unittest.cc", |
1442 "threading/thread_unittest.cc", | 1445 "threading/thread_unittest.cc", |
1443 "threading/watchdog_unittest.cc", | 1446 "threading/watchdog_unittest.cc", |
1444 "threading/worker_pool_posix_unittest.cc", | 1447 "threading/worker_pool_posix_unittest.cc", |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1721 | 1724 |
1722 # GYP: //base.gyp:base_java_unittest_support | 1725 # GYP: //base.gyp:base_java_unittest_support |
1723 android_library("base_java_unittest_support") { | 1726 android_library("base_java_unittest_support") { |
1724 deps = [ | 1727 deps = [ |
1725 ":base_java", | 1728 ":base_java", |
1726 ] | 1729 ] |
1727 java_files = | 1730 java_files = |
1728 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1731 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1729 } | 1732 } |
1730 } | 1733 } |
OLD | NEW |