| 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" ] | |
| 10 } | 9 } |
| 11 | 10 |
| 12 group("gpu") { | 11 group("gpu") { |
| 13 public_configs = [ ":gpu_configs" ] | 12 public_configs = [ ":gpu_configs" ] |
| 14 | 13 |
| 15 deps = [ | 14 deps = [ |
| 16 ":GLES2", | 15 ":GLES2", |
| 17 ":MGL", | 16 ":MGL", |
| 18 ":MGL_signal_sync_point", | 17 ":MGL_signal_sync_point", |
| 19 "../../platform/native:gles2", | 18 "../../platform/native:gles2", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 public_deps = [ | 87 public_deps = [ |
| 89 ":KHR", | 88 ":KHR", |
| 90 ] | 89 ] |
| 91 } | 90 } |
| 92 | 91 |
| 93 mojo_sdk_source_set("KHR") { | 92 mojo_sdk_source_set("KHR") { |
| 94 sources = [ | 93 sources = [ |
| 95 "KHR/khrplatform.h", | 94 "KHR/khrplatform.h", |
| 96 ] | 95 ] |
| 97 } | 96 } |
| OLD | NEW |