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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 "memory/discardable_memory_android.cc", | 320 "memory/discardable_memory_android.cc", |
321 "memory/discardable_memory_emulated.cc", | 321 "memory/discardable_memory_emulated.cc", |
322 "memory/discardable_memory_emulated.h", | 322 "memory/discardable_memory_emulated.h", |
323 "memory/discardable_memory_linux.cc", | 323 "memory/discardable_memory_linux.cc", |
324 "memory/discardable_memory_mac.cc", | 324 "memory/discardable_memory_mac.cc", |
325 "memory/discardable_memory_malloc.cc", | 325 "memory/discardable_memory_malloc.cc", |
326 "memory/discardable_memory_malloc.h", | 326 "memory/discardable_memory_malloc.h", |
327 "memory/discardable_memory_manager.cc", | 327 "memory/discardable_memory_manager.cc", |
328 "memory/discardable_memory_manager.h", | 328 "memory/discardable_memory_manager.h", |
329 "memory/discardable_memory_win.cc", | 329 "memory/discardable_memory_win.cc", |
| 330 "memory/lifetime_interface.cc", |
| 331 "memory/lifetime_interface.h", |
330 "memory/linked_ptr.h", | 332 "memory/linked_ptr.h", |
331 "memory/manual_constructor.h", | 333 "memory/manual_constructor.h", |
332 "memory/memory_pressure_listener.cc", | 334 "memory/memory_pressure_listener.cc", |
333 "memory/memory_pressure_listener.h", | 335 "memory/memory_pressure_listener.h", |
334 "memory/raw_scoped_refptr_mismatch_checker.h", | 336 "memory/raw_scoped_refptr_mismatch_checker.h", |
335 "memory/ref_counted.cc", | 337 "memory/ref_counted.cc", |
336 "memory/ref_counted.h", | 338 "memory/ref_counted.h", |
337 "memory/ref_counted_delete_on_message_loop.h", | 339 "memory/ref_counted_delete_on_message_loop.h", |
338 "memory/ref_counted_memory.cc", | 340 "memory/ref_counted_memory.cc", |
339 "memory/ref_counted_memory.h", | 341 "memory/ref_counted_memory.h", |
(...skipping 1111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1451 # GYP: //base.gyp:base_unittests_apk | 1453 # GYP: //base.gyp:base_unittests_apk |
1452 unittest_apk("base_unittests_apk") { | 1454 unittest_apk("base_unittests_apk") { |
1453 deps = [ | 1455 deps = [ |
1454 ":base_java", | 1456 ":base_java", |
1455 ":base_java_unittest_support", | 1457 ":base_java_unittest_support", |
1456 ":base_unittests", | 1458 ":base_unittests", |
1457 ] | 1459 ] |
1458 unittests_dep = ":base_unittests" | 1460 unittests_dep = ":base_unittests" |
1459 } | 1461 } |
1460 } | 1462 } |
OLD | NEW |