BUILD.gn 502 B

123456789101112131415
  1. # Copyright 2019 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/buildflag_header.gni")
  5. import("//components/gwp_asan/buildflags/buildflags.gni")
  6. buildflag_header("buildflags") {
  7. header = "buildflags.h"
  8. flags = [
  9. "ENABLE_GWP_ASAN_MALLOC=$enable_gwp_asan_malloc",
  10. "ENABLE_GWP_ASAN_PARTITIONALLOC=$enable_gwp_asan_partitionalloc",
  11. "ENABLE_GWP_ASAN=$enable_gwp_asan",
  12. ]
  13. }