Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 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 import("features.gni") | |
| 6 import("//build/buildflag_header.gni") | |
| 7 | |
| 8 # Generate a buildflag header for compile-time checking of WebVR support. | |
| 9 buildflag_header("features") { | |
| 10 header = "features.h" | |
| 11 flags = [ | |
| 12 "ENABLE_VR=$enable_vr", | |
| 13 "ENABLE_OPENVR=$enable_openvr", | |
| 14 ] | |
| 15 } | |
| OLD | NEW |