| 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 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 | 1636 |
| 1637 allow_circular_includes_from = public_deps | 1637 allow_circular_includes_from = public_deps |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 buildflag_header("debugging_flags") { | 1640 buildflag_header("debugging_flags") { |
| 1641 header = "debugging_flags.h" | 1641 header = "debugging_flags.h" |
| 1642 header_dir = "base/debug" | 1642 header_dir = "base/debug" |
| 1643 flags = [ | 1643 flags = [ |
| 1644 "ENABLE_PROFILING=$enable_profiling", | 1644 "ENABLE_PROFILING=$enable_profiling", |
| 1645 "ENABLE_MEMORY_TASK_PROFILER=$enable_memory_task_profiler", | 1645 "ENABLE_MEMORY_TASK_PROFILER=$enable_memory_task_profiler", |
| 1646 "CAN_UNWIND_WITH_FRAME_POINTERS=$can_unwind_with_frame_pointers", |
| 1646 ] | 1647 ] |
| 1647 } | 1648 } |
| 1648 | 1649 |
| 1649 # This is the subset of files from base that should not be used with a dynamic | 1650 # This is the subset of files from base that should not be used with a dynamic |
| 1650 # library. Note that this library cannot depend on base because base depends on | 1651 # library. Note that this library cannot depend on base because base depends on |
| 1651 # base_static. | 1652 # base_static. |
| 1652 static_library("base_static") { | 1653 static_library("base_static") { |
| 1653 sources = [ | 1654 sources = [ |
| 1654 "base_switches.cc", | 1655 "base_switches.cc", |
| 1655 "base_switches.h", | 1656 "base_switches.h", |
| (...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2706 } | 2707 } |
| 2707 | 2708 |
| 2708 fuzzer_test("base_json_correctness_fuzzer") { | 2709 fuzzer_test("base_json_correctness_fuzzer") { |
| 2709 sources = [ | 2710 sources = [ |
| 2710 "json/correctness_fuzzer.cc", | 2711 "json/correctness_fuzzer.cc", |
| 2711 ] | 2712 ] |
| 2712 deps = [ | 2713 deps = [ |
| 2713 ":base", | 2714 ":base", |
| 2714 ] | 2715 ] |
| 2715 } | 2716 } |
| OLD | NEW |