| 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 "memory/aligned_memory.h", | 459 "memory/aligned_memory.h", |
| 460 "memory/discardable_memory.cc", | 460 "memory/discardable_memory.cc", |
| 461 "memory/discardable_memory.h", | 461 "memory/discardable_memory.h", |
| 462 "memory/discardable_memory_allocator.cc", | 462 "memory/discardable_memory_allocator.cc", |
| 463 "memory/discardable_memory_allocator.h", | 463 "memory/discardable_memory_allocator.h", |
| 464 "memory/discardable_shared_memory.cc", | 464 "memory/discardable_shared_memory.cc", |
| 465 "memory/discardable_shared_memory.h", | 465 "memory/discardable_shared_memory.h", |
| 466 "memory/free_deleter.h", | 466 "memory/free_deleter.h", |
| 467 "memory/linked_ptr.h", | 467 "memory/linked_ptr.h", |
| 468 "memory/manual_constructor.h", | 468 "memory/manual_constructor.h", |
| 469 "memory/memory_coordinator_client.h", |
| 470 "memory/memory_coordinator_client_registry.cc", |
| 471 "memory/memory_coordinator_client_registry.h", |
| 469 "memory/memory_pressure_listener.cc", | 472 "memory/memory_pressure_listener.cc", |
| 470 "memory/memory_pressure_listener.h", | 473 "memory/memory_pressure_listener.h", |
| 471 "memory/memory_pressure_monitor.cc", | 474 "memory/memory_pressure_monitor.cc", |
| 472 "memory/memory_pressure_monitor.h", | 475 "memory/memory_pressure_monitor.h", |
| 473 "memory/memory_pressure_monitor_chromeos.cc", | 476 "memory/memory_pressure_monitor_chromeos.cc", |
| 474 "memory/memory_pressure_monitor_chromeos.h", | 477 "memory/memory_pressure_monitor_chromeos.h", |
| 475 "memory/memory_pressure_monitor_mac.cc", | 478 "memory/memory_pressure_monitor_mac.cc", |
| 476 "memory/memory_pressure_monitor_mac.h", | 479 "memory/memory_pressure_monitor_mac.h", |
| 477 "memory/memory_pressure_monitor_win.cc", | 480 "memory/memory_pressure_monitor_win.cc", |
| 478 "memory/memory_pressure_monitor_win.h", | 481 "memory/memory_pressure_monitor_win.h", |
| (...skipping 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2441 android_library("base_java_unittest_support") { | 2444 android_library("base_java_unittest_support") { |
| 2442 deps = [ | 2445 deps = [ |
| 2443 ":base_java", | 2446 ":base_java", |
| 2444 ] | 2447 ] |
| 2445 java_files = [ | 2448 java_files = [ |
| 2446 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2449 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2447 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2450 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2448 ] | 2451 ] |
| 2449 } | 2452 } |
| 2450 } | 2453 } |
| OLD | NEW |