| OLD | NEW |
| 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 import("../../mojo_sdk.gni") | 5 import("../../mojo_sdk.gni") |
| 6 | 6 |
| 7 config("gpu_configs") { | 7 config("gpu_configs") { |
| 8 include_dirs = [ "." ] | 8 include_dirs = [ "." ] |
| 9 defines = [ "GLES2_USE_MOJO" ] | 9 defines = [ "GLES2_USE_MOJO" ] |
| 10 } | 10 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 public_deps = [ | 59 public_deps = [ |
| 60 ":MGL", | 60 ":MGL", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 mojo_sdk_source_set("GLES2") { | 64 mojo_sdk_source_set("GLES2") { |
| 65 sources = [ | 65 sources = [ |
| 66 "GLES2/gl2.h", | 66 "GLES2/gl2.h", |
| 67 "GLES2/gl2ext.h", | 67 "GLES2/gl2ext.h", |
| 68 "GLES2/gl2mojo.h", | 68 "GLES2/gl2extmojo.h", |
| 69 "GLES2/gl2mojo_autogen.h", |
| 70 "GLES2/gl2mojo_internal.h", |
| 71 "GLES2/gl2platform.h", |
| 69 ] | 72 ] |
| 70 | 73 |
| 71 public_deps = [ | 74 public_deps = [ |
| 72 ":KHR", | 75 ":KHR", |
| 73 ] | 76 ] |
| 74 } | 77 } |
| 75 | 78 |
| 76 mojo_sdk_source_set("KHR") { | 79 mojo_sdk_source_set("KHR") { |
| 77 sources = [ | 80 sources = [ |
| 78 "KHR/khrplatform.h", | 81 "KHR/khrplatform.h", |
| 79 ] | 82 ] |
| 80 } | 83 } |
| OLD | NEW |