Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: gpu/command_buffer_gles2/BUILD.gn

Issue 1220883008: Add command_buffer_gles2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: needed an additional function for skia Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698