| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 "threading/platform_thread.h", | 517 "threading/platform_thread.h", |
| 518 "threading/platform_thread_android.cc", | 518 "threading/platform_thread_android.cc", |
| 519 "threading/platform_thread_internal_posix.cc", | 519 "threading/platform_thread_internal_posix.cc", |
| 520 "threading/platform_thread_internal_posix.h", | 520 "threading/platform_thread_internal_posix.h", |
| 521 "threading/platform_thread_linux.cc", | 521 "threading/platform_thread_linux.cc", |
| 522 "threading/platform_thread_mac.mm", | 522 "threading/platform_thread_mac.mm", |
| 523 "threading/platform_thread_posix.cc", | 523 "threading/platform_thread_posix.cc", |
| 524 "threading/platform_thread_win.cc", | 524 "threading/platform_thread_win.cc", |
| 525 "threading/post_task_and_reply_impl.cc", | 525 "threading/post_task_and_reply_impl.cc", |
| 526 "threading/post_task_and_reply_impl.h", | 526 "threading/post_task_and_reply_impl.h", |
| 527 "threading/sequenced_task_runner_handle.cc", |
| 528 "threading/sequenced_task_runner_handle.h", |
| 527 "threading/sequenced_worker_pool.cc", | 529 "threading/sequenced_worker_pool.cc", |
| 528 "threading/sequenced_worker_pool.h", | 530 "threading/sequenced_worker_pool.h", |
| 529 "threading/simple_thread.cc", | 531 "threading/simple_thread.cc", |
| 530 "threading/simple_thread.h", | 532 "threading/simple_thread.h", |
| 531 "threading/thread.cc", | 533 "threading/thread.cc", |
| 532 "threading/thread.h", | 534 "threading/thread.h", |
| 533 "threading/thread_checker.h", | 535 "threading/thread_checker.h", |
| 534 "threading/thread_checker_impl.cc", | 536 "threading/thread_checker_impl.cc", |
| 535 "threading/thread_checker_impl.h", | 537 "threading/thread_checker_impl.h", |
| 536 "threading/thread_collision_warner.cc", | 538 "threading/thread_collision_warner.cc", |
| (...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 | 1688 |
| 1687 # GYP: //base.gyp:base_java_unittest_support | 1689 # GYP: //base.gyp:base_java_unittest_support |
| 1688 android_library("base_java_unittest_support") { | 1690 android_library("base_java_unittest_support") { |
| 1689 deps = [ | 1691 deps = [ |
| 1690 ":base_java", | 1692 ":base_java", |
| 1691 ] | 1693 ] |
| 1692 java_files = | 1694 java_files = |
| 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1695 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1694 } | 1696 } |
| 1695 } | 1697 } |
| OLD | NEW |