OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 # GYP version: //gpu/command_buffer_gles2/command_buffer_gles2.gyp:command_buffe r_gles2 | |
8 shared_library("command_buffer_gles2") { | |
9 sources = [ | |
10 "command_buffer_egl.cc", | |
11 ] | |
12 | |
13 deps = [ | |
14 "//gpu/gles2_conform_support/egl", | |
15 "//gpu/command_buffer/client:gles2_c_lib", | |
16 ] | |
17 | |
18 defines = [ | |
19 "EGLAPI=", | |
20 "EGLAPIENTRY=", | |
21 ] | |
22 | |
23 configs -= [ "//build/config/compiler:chromium_code" ] | |
24 configs += [ "//build/config/compiler:no_chromium_code" ] | |
no sievers
2015/08/27 19:21:28
Is this not the opposite of "'chromium_code': 1" i
hendrikw
2015/08/27 20:34:44
Good catch.
| |
25 } | |
OLD | NEW |