| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 config("mesa_headers_config") { | 7 config("mesa_headers_config") { |
| 8 include_dirs = [ "src/include" ] | 8 include_dirs = [ "src/include" ] |
| 9 if (use_x11) { | 9 if (use_x11) { |
| 10 defines = [ "MESA_EGL_NO_X11_HEADERS" ] | 10 defines = [ "MESA_EGL_NO_X11_HEADERS" ] |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ":mesa_headers", | 250 ":mesa_headers", |
| 251 ] | 251 ] |
| 252 } | 252 } |
| 253 | 253 |
| 254 static_library("mesa") { | 254 static_library("mesa") { |
| 255 sources = [ | 255 sources = [ |
| 256 "$generated_src_dir/mesa/builtin_function.cpp", | 256 "$generated_src_dir/mesa/builtin_function.cpp", |
| 257 "$generated_src_dir/mesa/glapi_mapi_tmp_shared.h", | 257 "$generated_src_dir/mesa/glapi_mapi_tmp_shared.h", |
| 258 "src/src/mapi/mapi/entry.c", | 258 "src/src/mapi/mapi/entry.c", |
| 259 "src/src/mapi/mapi/entry.h", | 259 "src/src/mapi/mapi/entry.h", |
| 260 "src/src/mapi/mapi/mapi.c", | |
| 261 "src/src/mapi/mapi/mapi.h", | |
| 262 "src/src/mapi/mapi/mapi_glapi.c", | 260 "src/src/mapi/mapi/mapi_glapi.c", |
| 263 "src/src/mapi/mapi/stub.c", | 261 "src/src/mapi/mapi/stub.c", |
| 264 "src/src/mapi/mapi/stub.h", | 262 "src/src/mapi/mapi/stub.h", |
| 265 "src/src/mapi/mapi/table.c", | 263 "src/src/mapi/mapi/table.c", |
| 266 "src/src/mapi/mapi/table.h", | 264 "src/src/mapi/mapi/table.h", |
| 267 "src/src/mapi/mapi/u_current.c", | 265 "src/src/mapi/mapi/u_current.c", |
| 268 "src/src/mapi/mapi/u_current.h", | 266 "src/src/mapi/mapi/u_current.h", |
| 269 "src/src/mapi/mapi/u_execmem.c", | 267 "src/src/mapi/mapi/u_execmem.c", |
| 270 "src/src/mapi/mapi/u_execmem.h", | 268 "src/src/mapi/mapi/u_execmem.h", |
| 271 "src/src/mesa/main/accum.c", | 269 "src/src/mesa/main/accum.c", |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 "BUILD_GL32", | 694 "BUILD_GL32", |
| 697 "KEYWORD1=GLAPI", | 695 "KEYWORD1=GLAPI", |
| 698 "KEYWORD2=GLAPIENTRY", | 696 "KEYWORD2=GLAPIENTRY", |
| 699 ] | 697 ] |
| 700 } | 698 } |
| 701 } | 699 } |
| 702 | 700 |
| 703 } # !is_android | 701 } # !is_android |
| 704 | 702 |
| 705 # TODO(GYP) Android osmesa_in_lib_dir target. | 703 # TODO(GYP) Android osmesa_in_lib_dir target. |
| OLD | NEW |