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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 "third_party/icu/icu_utf.cc", | 477 "third_party/icu/icu_utf.cc", |
478 "third_party/icu/icu_utf.h", | 478 "third_party/icu/icu_utf.h", |
479 "third_party/superfasthash/superfasthash.c", | 479 "third_party/superfasthash/superfasthash.c", |
480 "thread_task_runner_handle.cc", | 480 "thread_task_runner_handle.cc", |
481 "thread_task_runner_handle.h", | 481 "thread_task_runner_handle.h", |
482 "threading/non_thread_safe.h", | 482 "threading/non_thread_safe.h", |
483 "threading/non_thread_safe_impl.cc", | 483 "threading/non_thread_safe_impl.cc", |
484 "threading/non_thread_safe_impl.h", | 484 "threading/non_thread_safe_impl.h", |
485 "threading/platform_thread.h", | 485 "threading/platform_thread.h", |
486 "threading/platform_thread_android.cc", | 486 "threading/platform_thread_android.cc", |
| 487 "threading/platform_thread_internal_posix.cc", |
| 488 "threading/platform_thread_internal_posix.h", |
487 "threading/platform_thread_linux.cc", | 489 "threading/platform_thread_linux.cc", |
488 "threading/platform_thread_mac.mm", | 490 "threading/platform_thread_mac.mm", |
489 "threading/platform_thread_posix.cc", | 491 "threading/platform_thread_posix.cc", |
490 "threading/platform_thread_win.cc", | 492 "threading/platform_thread_win.cc", |
491 "threading/post_task_and_reply_impl.cc", | 493 "threading/post_task_and_reply_impl.cc", |
492 "threading/post_task_and_reply_impl.h", | 494 "threading/post_task_and_reply_impl.h", |
493 "threading/sequenced_worker_pool.cc", | 495 "threading/sequenced_worker_pool.cc", |
494 "threading/sequenced_worker_pool.h", | 496 "threading/sequenced_worker_pool.h", |
495 "threading/simple_thread.cc", | 497 "threading/simple_thread.cc", |
496 "threading/simple_thread.h", | 498 "threading/simple_thread.h", |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 } else if (!is_nacl) { | 735 } else if (!is_nacl) { |
734 # Non-Windows. | 736 # Non-Windows. |
735 deps += [ "//third_party/libevent" ] | 737 deps += [ "//third_party/libevent" ] |
736 } | 738 } |
737 | 739 |
738 # Mac. | 740 # Mac. |
739 if (is_mac) { | 741 if (is_mac) { |
740 sources -= [ | 742 sources -= [ |
741 "native_library_posix.cc", | 743 "native_library_posix.cc", |
742 "strings/sys_string_conversions_posix.cc", | 744 "strings/sys_string_conversions_posix.cc", |
| 745 "threading/platform_thread_internal_posix.cc", |
743 ] | 746 ] |
744 } else { | 747 } else { |
745 # Non-Mac. | 748 # Non-Mac. |
746 sources -= [ | 749 sources -= [ |
747 "files/file_path_watcher_fsevents.cc", | 750 "files/file_path_watcher_fsevents.cc", |
748 "files/file_path_watcher_fsevents.h", | 751 "files/file_path_watcher_fsevents.h", |
749 "files/file_path_watcher_kqueue.cc", | 752 "files/file_path_watcher_kqueue.cc", |
750 "files/file_path_watcher_kqueue.h", | 753 "files/file_path_watcher_kqueue.h", |
751 ] | 754 ] |
752 } | 755 } |
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 | 1464 |
1462 # GYP: //base.gyp:base_java_unittest_support | 1465 # GYP: //base.gyp:base_java_unittest_support |
1463 android_library("base_java_unittest_support") { | 1466 android_library("base_java_unittest_support") { |
1464 deps = [ | 1467 deps = [ |
1465 ":base_java", | 1468 ":base_java", |
1466 ] | 1469 ] |
1467 java_files = | 1470 java_files = |
1468 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1471 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1469 } | 1472 } |
1470 } | 1473 } |
OLD | NEW |