Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 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("//build/config/ui.gni") | |
| 6 | |
| 7 config("mesa_headers_config") { | |
| 8 include_dirs = [ "src/include" ] | |
| 9 if (use_x11) { | |
| 10 defines = [ "MESA_EGL_NO_X11_HEADERS" ] | |
| 11 } | |
| 12 } | |
| 13 | |
| 14 source_set("mesa_headers") { | |
| 15 direct_dependent_configs = [ ":mesa_headers_config" ] | |
| 16 } | |
| OLD | NEW |