compute_inputs_for_analyze.gni 531 B

1234567891011121314
  1. # Copyright 2018 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. declare_args() {
  5. # Enable this flag when running "gn analyze".
  6. #
  7. # This causes some gn actions to compute inputs immediately (via exec_script)
  8. # where they would normally compute them only when executed (and write them to
  9. # a depfile).
  10. #
  11. # This flag will slow down GN, but is required for analyze to work properly.
  12. compute_inputs_for_analyze = false
  13. }