| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 "memory/shared_memory.h", | 537 "memory/shared_memory.h", |
| 538 "memory/shared_memory_android.cc", | 538 "memory/shared_memory_android.cc", |
| 539 "memory/shared_memory_handle.h", | 539 "memory/shared_memory_handle.h", |
| 540 "memory/shared_memory_handle_mac.cc", | 540 "memory/shared_memory_handle_mac.cc", |
| 541 "memory/shared_memory_handle_win.cc", | 541 "memory/shared_memory_handle_win.cc", |
| 542 "memory/shared_memory_helper.cc", | 542 "memory/shared_memory_helper.cc", |
| 543 "memory/shared_memory_helper.h", | 543 "memory/shared_memory_helper.h", |
| 544 "memory/shared_memory_mac.cc", | 544 "memory/shared_memory_mac.cc", |
| 545 "memory/shared_memory_nacl.cc", | 545 "memory/shared_memory_nacl.cc", |
| 546 "memory/shared_memory_posix.cc", | 546 "memory/shared_memory_posix.cc", |
| 547 "memory/shared_memory_tracker.cc", |
| 548 "memory/shared_memory_tracker.h", |
| 547 "memory/shared_memory_win.cc", | 549 "memory/shared_memory_win.cc", |
| 548 "memory/singleton.cc", | 550 "memory/singleton.cc", |
| 549 "memory/singleton.h", | 551 "memory/singleton.h", |
| 550 "memory/weak_ptr.cc", | 552 "memory/weak_ptr.cc", |
| 551 "memory/weak_ptr.h", | 553 "memory/weak_ptr.h", |
| 552 "message_loop/incoming_task_queue.cc", | 554 "message_loop/incoming_task_queue.cc", |
| 553 "message_loop/incoming_task_queue.h", | 555 "message_loop/incoming_task_queue.h", |
| 554 "message_loop/message_loop.cc", | 556 "message_loop/message_loop.cc", |
| 555 "message_loop/message_loop.h", | 557 "message_loop/message_loop.h", |
| 556 "message_loop/message_loop_task_runner.cc", | 558 "message_loop/message_loop_task_runner.cc", |
| (...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1590 "time/time_mac.cc", | 1592 "time/time_mac.cc", |
| 1591 ] | 1593 ] |
| 1592 | 1594 |
| 1593 set_sources_assignment_filter(sources_assignment_filter) | 1595 set_sources_assignment_filter(sources_assignment_filter) |
| 1594 } | 1596 } |
| 1595 | 1597 |
| 1596 if (is_posix && !is_mac && !is_ios && !is_android && !is_chromeos) { | 1598 if (is_posix && !is_mac && !is_ios && !is_android && !is_chromeos) { |
| 1597 sources += [ "power_monitor/power_monitor_device_source_posix.cc" ] | 1599 sources += [ "power_monitor/power_monitor_device_source_posix.cc" ] |
| 1598 } | 1600 } |
| 1599 | 1601 |
| 1600 if (is_posix && !is_mac && !is_nacl) { | |
| 1601 sources += [ | |
| 1602 "memory/shared_memory_tracker.cc", | |
| 1603 "memory/shared_memory_tracker.h", | |
| 1604 ] | |
| 1605 } | |
| 1606 | |
| 1607 if (!use_glib) { | 1602 if (!use_glib) { |
| 1608 sources -= [ | 1603 sources -= [ |
| 1609 "message_loop/message_pump_glib.cc", | 1604 "message_loop/message_pump_glib.cc", |
| 1610 "message_loop/message_pump_glib.h", | 1605 "message_loop/message_pump_glib.h", |
| 1611 ] | 1606 ] |
| 1612 } | 1607 } |
| 1613 | 1608 |
| 1614 if (using_sanitizer) { | 1609 if (using_sanitizer) { |
| 1615 data += [ "//tools/valgrind/asan/" ] | 1610 data += [ "//tools/valgrind/asan/" ] |
| 1616 if (is_win) { | 1611 if (is_win) { |
| (...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2684 } | 2679 } |
| 2685 | 2680 |
| 2686 fuzzer_test("base_json_correctness_fuzzer") { | 2681 fuzzer_test("base_json_correctness_fuzzer") { |
| 2687 sources = [ | 2682 sources = [ |
| 2688 "json/correctness_fuzzer.cc", | 2683 "json/correctness_fuzzer.cc", |
| 2689 ] | 2684 ] |
| 2690 deps = [ | 2685 deps = [ |
| 2691 ":base", | 2686 ":base", |
| 2692 ] | 2687 ] |
| 2693 } | 2688 } |
| OLD | NEW |