| 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1913 "template_util_unittest.cc", | 1913 "template_util_unittest.cc", |
| 1914 "test/histogram_tester_unittest.cc", | 1914 "test/histogram_tester_unittest.cc", |
| 1915 "test/icu_test_util.cc", | 1915 "test/icu_test_util.cc", |
| 1916 "test/icu_test_util.h", | 1916 "test/icu_test_util.h", |
| 1917 "test/test_pending_task_unittest.cc", | 1917 "test/test_pending_task_unittest.cc", |
| 1918 "test/test_reg_util_win_unittest.cc", | 1918 "test/test_reg_util_win_unittest.cc", |
| 1919 "test/trace_event_analyzer_unittest.cc", | 1919 "test/trace_event_analyzer_unittest.cc", |
| 1920 "test/user_action_tester_unittest.cc", | 1920 "test/user_action_tester_unittest.cc", |
| 1921 "threading/non_thread_safe_unittest.cc", | 1921 "threading/non_thread_safe_unittest.cc", |
| 1922 "threading/platform_thread_unittest.cc", | 1922 "threading/platform_thread_unittest.cc", |
| 1923 "threading/post_task_and_reply_impl_unittest.cc", |
| 1923 "threading/sequenced_task_runner_handle_unittest.cc", | 1924 "threading/sequenced_task_runner_handle_unittest.cc", |
| 1924 "threading/sequenced_worker_pool_unittest.cc", | 1925 "threading/sequenced_worker_pool_unittest.cc", |
| 1925 "threading/simple_thread_unittest.cc", | 1926 "threading/simple_thread_unittest.cc", |
| 1926 "threading/thread_checker_unittest.cc", | 1927 "threading/thread_checker_unittest.cc", |
| 1927 "threading/thread_collision_warner_unittest.cc", | 1928 "threading/thread_collision_warner_unittest.cc", |
| 1928 "threading/thread_id_name_manager_unittest.cc", | 1929 "threading/thread_id_name_manager_unittest.cc", |
| 1929 "threading/thread_local_storage_unittest.cc", | 1930 "threading/thread_local_storage_unittest.cc", |
| 1930 "threading/thread_local_unittest.cc", | 1931 "threading/thread_local_unittest.cc", |
| 1931 "threading/thread_unittest.cc", | 1932 "threading/thread_unittest.cc", |
| 1932 "threading/watchdog_unittest.cc", | 1933 "threading/watchdog_unittest.cc", |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2432 | 2433 |
| 2433 # GYP: //base.gyp:base_java_unittest_support | 2434 # GYP: //base.gyp:base_java_unittest_support |
| 2434 android_library("base_java_unittest_support") { | 2435 android_library("base_java_unittest_support") { |
| 2435 deps = [ | 2436 deps = [ |
| 2436 ":base_java", | 2437 ":base_java", |
| 2437 ] | 2438 ] |
| 2438 java_files = | 2439 java_files = |
| 2439 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2440 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2440 } | 2441 } |
| 2441 } | 2442 } |
| OLD | NEW |