| 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 "memory/aligned_memory.cc", | 462 "memory/aligned_memory.cc", |
| 463 "memory/aligned_memory.h", | 463 "memory/aligned_memory.h", |
| 464 "memory/discardable_memory.cc", | 464 "memory/discardable_memory.cc", |
| 465 "memory/discardable_memory.h", | 465 "memory/discardable_memory.h", |
| 466 "memory/discardable_memory_allocator.cc", | 466 "memory/discardable_memory_allocator.cc", |
| 467 "memory/discardable_memory_allocator.h", | 467 "memory/discardable_memory_allocator.h", |
| 468 "memory/discardable_shared_memory.cc", | 468 "memory/discardable_shared_memory.cc", |
| 469 "memory/discardable_shared_memory.h", | 469 "memory/discardable_shared_memory.h", |
| 470 "memory/free_deleter.h", | 470 "memory/free_deleter.h", |
| 471 "memory/linked_ptr.h", | 471 "memory/linked_ptr.h", |
| 472 "memory/malloc_statistics.cc", |
| 473 "memory/malloc_statistics.h", |
| 472 "memory/manual_constructor.h", | 474 "memory/manual_constructor.h", |
| 473 "memory/memory_coordinator_client.h", | 475 "memory/memory_coordinator_client.h", |
| 474 "memory/memory_coordinator_client_registry.cc", | 476 "memory/memory_coordinator_client_registry.cc", |
| 475 "memory/memory_coordinator_client_registry.h", | 477 "memory/memory_coordinator_client_registry.h", |
| 476 "memory/memory_pressure_listener.cc", | 478 "memory/memory_pressure_listener.cc", |
| 477 "memory/memory_pressure_listener.h", | 479 "memory/memory_pressure_listener.h", |
| 478 "memory/memory_pressure_monitor.cc", | 480 "memory/memory_pressure_monitor.cc", |
| 479 "memory/memory_pressure_monitor.h", | 481 "memory/memory_pressure_monitor.h", |
| 480 "memory/memory_pressure_monitor_chromeos.cc", | 482 "memory/memory_pressure_monitor_chromeos.cc", |
| 481 "memory/memory_pressure_monitor_chromeos.h", | 483 "memory/memory_pressure_monitor_chromeos.h", |
| (...skipping 1977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2459 testonly = true | 2461 testonly = true |
| 2460 deps = [ | 2462 deps = [ |
| 2461 ":base_java", | 2463 ":base_java", |
| 2462 ] | 2464 ] |
| 2463 java_files = [ | 2465 java_files = [ |
| 2464 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2466 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2465 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2467 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2466 ] | 2468 ] |
| 2467 } | 2469 } |
| 2468 } | 2470 } |
| OLD | NEW |