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") { | |
jamesr
2014/05/31 00:44:52
can i get away with just a target? how do i fwd if
brettw
2014/05/31 04:11:28
You need the config to forward. You can get away w
| |
8 include_dirs = [ "src/include" ] | |
9 if (use_x11) { | |
10 defines += [ "MESA_EGL_NO_X11_HEADERS" ] | |
tfarina
2014/05/31 23:24:17
Linux GN bot is complaining about this:
ERROR at
| |
11 } | |
12 } | |
13 | |
14 source_set("mesa_headers") { | |
15 direct_dependent_configs = [ ":mesa_headers_config" ] | |
16 } | |
OLD | NEW |