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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 "mac/scoped_nsobject.mm", | 478 "mac/scoped_nsobject.mm", |
479 "mac/scoped_objc_class_swizzler.h", | 479 "mac/scoped_objc_class_swizzler.h", |
480 "mac/scoped_objc_class_swizzler.mm", | 480 "mac/scoped_objc_class_swizzler.mm", |
481 "mac/scoped_sending_event.h", | 481 "mac/scoped_sending_event.h", |
482 "mac/scoped_sending_event.mm", | 482 "mac/scoped_sending_event.mm", |
483 "mac/sdk_forward_declarations.h", | 483 "mac/sdk_forward_declarations.h", |
484 "mac/sdk_forward_declarations.mm", | 484 "mac/sdk_forward_declarations.mm", |
485 "macros.h", | 485 "macros.h", |
486 "md5.cc", | 486 "md5.cc", |
487 "md5.h", | 487 "md5.h", |
| 488 "memory/address_hasher.cc", |
| 489 "memory/address_hasher.h", |
488 "memory/aligned_memory.cc", | 490 "memory/aligned_memory.cc", |
489 "memory/aligned_memory.h", | 491 "memory/aligned_memory.h", |
490 "memory/discardable_memory.cc", | 492 "memory/discardable_memory.cc", |
491 "memory/discardable_memory.h", | 493 "memory/discardable_memory.h", |
492 "memory/discardable_memory_allocator.cc", | 494 "memory/discardable_memory_allocator.cc", |
493 "memory/discardable_memory_allocator.h", | 495 "memory/discardable_memory_allocator.h", |
494 "memory/discardable_shared_memory.cc", | 496 "memory/discardable_shared_memory.cc", |
495 "memory/discardable_shared_memory.h", | 497 "memory/discardable_shared_memory.h", |
496 "memory/free_deleter.h", | 498 "memory/free_deleter.h", |
497 "memory/linked_ptr.h", | 499 "memory/linked_ptr.h", |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1570 "time/time_mac.cc", | 1572 "time/time_mac.cc", |
1571 ] | 1573 ] |
1572 | 1574 |
1573 set_sources_assignment_filter(sources_assignment_filter) | 1575 set_sources_assignment_filter(sources_assignment_filter) |
1574 } | 1576 } |
1575 | 1577 |
1576 if (is_posix && !is_mac && !is_ios && !is_android && !is_chromeos) { | 1578 if (is_posix && !is_mac && !is_ios && !is_android && !is_chromeos) { |
1577 sources += [ "power_monitor/power_monitor_device_source_posix.cc" ] | 1579 sources += [ "power_monitor/power_monitor_device_source_posix.cc" ] |
1578 } | 1580 } |
1579 | 1581 |
| 1582 if (is_posix && !is_mac && !is_nacl) { |
| 1583 sources += [ |
| 1584 "memory/shared_memory_tracker.cc", |
| 1585 "memory/shared_memory_tracker.h", |
| 1586 ] |
| 1587 } |
| 1588 |
1580 if (!use_glib) { | 1589 if (!use_glib) { |
1581 sources -= [ | 1590 sources -= [ |
1582 "message_loop/message_pump_glib.cc", | 1591 "message_loop/message_pump_glib.cc", |
1583 "message_loop/message_pump_glib.h", | 1592 "message_loop/message_pump_glib.h", |
1584 ] | 1593 ] |
1585 } | 1594 } |
1586 | 1595 |
1587 if (using_sanitizer) { | 1596 if (using_sanitizer) { |
1588 data += [ "//tools/valgrind/asan/" ] | 1597 data += [ "//tools/valgrind/asan/" ] |
1589 if (is_win) { | 1598 if (is_win) { |
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2637 } | 2646 } |
2638 | 2647 |
2639 fuzzer_test("base_json_correctness_fuzzer") { | 2648 fuzzer_test("base_json_correctness_fuzzer") { |
2640 sources = [ | 2649 sources = [ |
2641 "json/correctness_fuzzer.cc", | 2650 "json/correctness_fuzzer.cc", |
2642 ] | 2651 ] |
2643 deps = [ | 2652 deps = [ |
2644 ":base", | 2653 ":base", |
2645 ] | 2654 ] |
2646 } | 2655 } |
OLD | NEW |