| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 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 |
| 5 declare_args() { |
| 6 # Blink uses a cutting-edge version of Harfbuzz; most Linux distros do not |
| 7 # contain a new enough version of the code to work correctly. However, |
| 8 # ChromeOS chroots (i.e, real ChromeOS builds for devices) do contain a |
| 9 # new enough version of the library, and so this variable exists so that |
| 10 # ChromeOS can build against the system lib and keep binary sizes smaller. |
| 11 use_system_harfbuzz = false |
| 12 } |
| OLD | NEW |