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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 "containers/small_map.h", | 250 "containers/small_map.h", |
251 "containers/stack_container.h", | 251 "containers/stack_container.h", |
252 "cpu.cc", | 252 "cpu.cc", |
253 "cpu.h", | 253 "cpu.h", |
254 "critical_closure.h", | 254 "critical_closure.h", |
255 "critical_closure_internal_ios.mm", | 255 "critical_closure_internal_ios.mm", |
256 "debug/alias.cc", | 256 "debug/alias.cc", |
257 "debug/alias.h", | 257 "debug/alias.h", |
258 "debug/asan_invalid_access.cc", | 258 "debug/asan_invalid_access.cc", |
259 "debug/asan_invalid_access.h", | 259 "debug/asan_invalid_access.h", |
| 260 "debug/blame_context.cc", |
| 261 "debug/blame_context.h", |
260 "debug/close_handle_hook_win.cc", | 262 "debug/close_handle_hook_win.cc", |
261 "debug/close_handle_hook_win.h", | 263 "debug/close_handle_hook_win.h", |
262 "debug/crash_logging.cc", | 264 "debug/crash_logging.cc", |
263 "debug/crash_logging.h", | 265 "debug/crash_logging.h", |
264 "debug/debugger.cc", | 266 "debug/debugger.cc", |
265 "debug/debugger.h", | 267 "debug/debugger.h", |
266 "debug/debugger_posix.cc", | 268 "debug/debugger_posix.cc", |
267 "debug/debugger_win.cc", | 269 "debug/debugger_win.cc", |
268 "debug/dump_without_crashing.cc", | 270 "debug/dump_without_crashing.cc", |
269 "debug/dump_without_crashing.h", | 271 "debug/dump_without_crashing.h", |
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1570 "cancelable_callback_unittest.cc", | 1572 "cancelable_callback_unittest.cc", |
1571 "command_line_unittest.cc", | 1573 "command_line_unittest.cc", |
1572 "containers/adapters_unittest.cc", | 1574 "containers/adapters_unittest.cc", |
1573 "containers/hash_tables_unittest.cc", | 1575 "containers/hash_tables_unittest.cc", |
1574 "containers/linked_list_unittest.cc", | 1576 "containers/linked_list_unittest.cc", |
1575 "containers/mru_cache_unittest.cc", | 1577 "containers/mru_cache_unittest.cc", |
1576 "containers/scoped_ptr_hash_map_unittest.cc", | 1578 "containers/scoped_ptr_hash_map_unittest.cc", |
1577 "containers/small_map_unittest.cc", | 1579 "containers/small_map_unittest.cc", |
1578 "containers/stack_container_unittest.cc", | 1580 "containers/stack_container_unittest.cc", |
1579 "cpu_unittest.cc", | 1581 "cpu_unittest.cc", |
| 1582 "debug/blame_context_unittest.cc", |
1580 "debug/crash_logging_unittest.cc", | 1583 "debug/crash_logging_unittest.cc", |
1581 "debug/debugger_unittest.cc", | 1584 "debug/debugger_unittest.cc", |
1582 "debug/leak_tracker_unittest.cc", | 1585 "debug/leak_tracker_unittest.cc", |
1583 "debug/proc_maps_linux_unittest.cc", | 1586 "debug/proc_maps_linux_unittest.cc", |
1584 "debug/stack_trace_unittest.cc", | 1587 "debug/stack_trace_unittest.cc", |
1585 "debug/task_annotator_unittest.cc", | 1588 "debug/task_annotator_unittest.cc", |
1586 "deferred_sequenced_task_runner_unittest.cc", | 1589 "deferred_sequenced_task_runner_unittest.cc", |
1587 "environment_unittest.cc", | 1590 "environment_unittest.cc", |
1588 "file_version_info_unittest.cc", | 1591 "file_version_info_unittest.cc", |
1589 "files/dir_reader_posix_unittest.cc", | 1592 "files/dir_reader_posix_unittest.cc", |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2098 | 2101 |
2099 # GYP: //base.gyp:base_java_unittest_support | 2102 # GYP: //base.gyp:base_java_unittest_support |
2100 android_library("base_java_unittest_support") { | 2103 android_library("base_java_unittest_support") { |
2101 deps = [ | 2104 deps = [ |
2102 ":base_java", | 2105 ":base_java", |
2103 ] | 2106 ] |
2104 java_files = | 2107 java_files = |
2105 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2108 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2106 } | 2109 } |
2107 } | 2110 } |
OLD | NEW |