| 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 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 | 1629 |
| 1630 allow_circular_includes_from = public_deps | 1630 allow_circular_includes_from = public_deps |
| 1631 } | 1631 } |
| 1632 | 1632 |
| 1633 buildflag_header("debugging_flags") { | 1633 buildflag_header("debugging_flags") { |
| 1634 header = "debugging_flags.h" | 1634 header = "debugging_flags.h" |
| 1635 header_dir = "base/debug" | 1635 header_dir = "base/debug" |
| 1636 flags = [ | 1636 flags = [ |
| 1637 "ENABLE_PROFILING=$enable_profiling", | 1637 "ENABLE_PROFILING=$enable_profiling", |
| 1638 "ENABLE_MEMORY_TASK_PROFILER=$enable_memory_task_profiler", | 1638 "ENABLE_MEMORY_TASK_PROFILER=$enable_memory_task_profiler", |
| 1639 "HAVE_TRACE_STACK_FRAME_POINTERS=$emit_frame_pointers_by_default", |
| 1639 ] | 1640 ] |
| 1640 } | 1641 } |
| 1641 | 1642 |
| 1642 # This is the subset of files from base that should not be used with a dynamic | 1643 # This is the subset of files from base that should not be used with a dynamic |
| 1643 # library. Note that this library cannot depend on base because base depends on | 1644 # library. Note that this library cannot depend on base because base depends on |
| 1644 # base_static. | 1645 # base_static. |
| 1645 static_library("base_static") { | 1646 static_library("base_static") { |
| 1646 sources = [ | 1647 sources = [ |
| 1647 "base_switches.cc", | 1648 "base_switches.cc", |
| 1648 "base_switches.h", | 1649 "base_switches.h", |
| (...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2684 } | 2685 } |
| 2685 | 2686 |
| 2686 fuzzer_test("base_json_correctness_fuzzer") { | 2687 fuzzer_test("base_json_correctness_fuzzer") { |
| 2687 sources = [ | 2688 sources = [ |
| 2688 "json/correctness_fuzzer.cc", | 2689 "json/correctness_fuzzer.cc", |
| 2689 ] | 2690 ] |
| 2690 deps = [ | 2691 deps = [ |
| 2691 ":base", | 2692 ":base", |
| 2692 ] | 2693 ] |
| 2693 } | 2694 } |
| OLD | NEW |