| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "debug/activity_analyzer.cc", | 283 "debug/activity_analyzer.cc", |
| 284 "debug/activity_analyzer.h", | 284 "debug/activity_analyzer.h", |
| 285 "debug/activity_tracker.cc", | 285 "debug/activity_tracker.cc", |
| 286 "debug/activity_tracker.h", | 286 "debug/activity_tracker.h", |
| 287 "debug/leak_annotations.h", | 287 "debug/leak_annotations.h", |
| 288 "debug/leak_tracker.h", | 288 "debug/leak_tracker.h", |
| 289 "debug/proc_maps_linux.cc", | 289 "debug/proc_maps_linux.cc", |
| 290 "debug/proc_maps_linux.h", | 290 "debug/proc_maps_linux.h", |
| 291 "debug/profiler.cc", | 291 "debug/profiler.cc", |
| 292 "debug/profiler.h", | 292 "debug/profiler.h", |
| 293 "debug/scoped_heap_usage.cc", |
| 294 "debug/scoped_heap_usage.h", |
| 293 "debug/stack_trace.cc", | 295 "debug/stack_trace.cc", |
| 294 "debug/stack_trace.h", | 296 "debug/stack_trace.h", |
| 295 "debug/stack_trace_android.cc", | 297 "debug/stack_trace_android.cc", |
| 296 "debug/stack_trace_posix.cc", | 298 "debug/stack_trace_posix.cc", |
| 297 "debug/stack_trace_win.cc", | 299 "debug/stack_trace_win.cc", |
| 298 "debug/task_annotator.cc", | 300 "debug/task_annotator.cc", |
| 299 "debug/task_annotator.h", | 301 "debug/task_annotator.h", |
| 300 "deferred_sequenced_task_runner.cc", | 302 "deferred_sequenced_task_runner.cc", |
| 301 "deferred_sequenced_task_runner.h", | 303 "deferred_sequenced_task_runner.h", |
| 302 "environment.cc", | 304 "environment.cc", |
| (...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1768 "containers/scoped_ptr_hash_map_unittest.cc", | 1770 "containers/scoped_ptr_hash_map_unittest.cc", |
| 1769 "containers/small_map_unittest.cc", | 1771 "containers/small_map_unittest.cc", |
| 1770 "containers/stack_container_unittest.cc", | 1772 "containers/stack_container_unittest.cc", |
| 1771 "cpu_unittest.cc", | 1773 "cpu_unittest.cc", |
| 1772 "debug/activity_analyzer_unittest.cc", | 1774 "debug/activity_analyzer_unittest.cc", |
| 1773 "debug/activity_tracker_unittest.cc", | 1775 "debug/activity_tracker_unittest.cc", |
| 1774 "debug/crash_logging_unittest.cc", | 1776 "debug/crash_logging_unittest.cc", |
| 1775 "debug/debugger_unittest.cc", | 1777 "debug/debugger_unittest.cc", |
| 1776 "debug/leak_tracker_unittest.cc", | 1778 "debug/leak_tracker_unittest.cc", |
| 1777 "debug/proc_maps_linux_unittest.cc", | 1779 "debug/proc_maps_linux_unittest.cc", |
| 1780 "debug/scoped_heap_usage_unittest.cc", |
| 1778 "debug/stack_trace_unittest.cc", | 1781 "debug/stack_trace_unittest.cc", |
| 1779 "debug/task_annotator_unittest.cc", | 1782 "debug/task_annotator_unittest.cc", |
| 1780 "deferred_sequenced_task_runner_unittest.cc", | 1783 "deferred_sequenced_task_runner_unittest.cc", |
| 1781 "environment_unittest.cc", | 1784 "environment_unittest.cc", |
| 1782 "feature_list_unittest.cc", | 1785 "feature_list_unittest.cc", |
| 1783 "file_version_info_win_unittest.cc", | 1786 "file_version_info_win_unittest.cc", |
| 1784 "files/dir_reader_posix_unittest.cc", | 1787 "files/dir_reader_posix_unittest.cc", |
| 1785 "files/file_locking_unittest.cc", | 1788 "files/file_locking_unittest.cc", |
| 1786 "files/file_path_unittest.cc", | 1789 "files/file_path_unittest.cc", |
| 1787 "files/file_path_watcher_unittest.cc", | 1790 "files/file_path_watcher_unittest.cc", |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2458 | 2461 |
| 2459 # GYP: //base.gyp:base_java_unittest_support | 2462 # GYP: //base.gyp:base_java_unittest_support |
| 2460 android_library("base_java_unittest_support") { | 2463 android_library("base_java_unittest_support") { |
| 2461 deps = [ | 2464 deps = [ |
| 2462 ":base_java", | 2465 ":base_java", |
| 2463 ] | 2466 ] |
| 2464 java_files = | 2467 java_files = |
| 2465 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2468 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2466 } | 2469 } |
| 2467 } | 2470 } |
| OLD | NEW |