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

Side by Side Diff: ppapi/lib/gl/gles2/BUILD.gn

Issue 921993002: Implement the rest of the PPAPI examples in the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ppapi_examples
Patch Set: Fix GYP Created 5 years, 10 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 config("gles2_config") {
6 include_dirs = [ "//ppapi/lib/gl/include" ]
7 }
8
5 source_set("gles2") { 9 source_set("gles2") {
6 sources = [ 10 sources = [
7 "gl2ext_ppapi.c", 11 "gl2ext_ppapi.c",
8 "gl2ext_ppapi.h", 12 "gl2ext_ppapi.h",
9 "gles2.c", 13 "gles2.c",
10 ] 14 ]
11 15
12 include_dirs = [ "lib/gl/include" ] 16 public_configs = [ ":gles2_config" ]
13 17
14 deps = [ 18 public_deps = [
15 "//ppapi/c", 19 "//ppapi/c",
16 ] 20 ]
17 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698