| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | |
| 6 | |
| 7 config("mojo_use_gles2") { | 5 config("mojo_use_gles2") { |
| 8 defines = [ "MOJO_USE_GLES2_IMPL" ] | 6 defines = [ "MOJO_USE_GLES2_IMPL" ] |
| 9 } | 7 } |
| 10 | 8 |
| 11 config("gles2_use_mojo") { | 9 config("gles2_use_mojo") { |
| 12 defines = [ "GLES2_USE_MOJO" ] | 10 defines = [ "GLES2_USE_MOJO" ] |
| 13 } | 11 } |
| 14 | 12 |
| 15 source_set("gles2") { | 13 source_set("gles2") { |
| 16 sources = [ | 14 sources = [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 "//gpu/command_buffer/common", | 43 "//gpu/command_buffer/common", |
| 46 "//mojo/environment:chromium", | 44 "//mojo/environment:chromium", |
| 47 "//third_party/mojo/src/mojo/public/c/gles2:headers", | 45 "//third_party/mojo/src/mojo/public/c/gles2:headers", |
| 48 "//third_party/mojo/src/mojo/public/c/system", | 46 "//third_party/mojo/src/mojo/public/c/system", |
| 49 "//third_party/mojo/src/mojo/public/cpp/bindings", | 47 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 50 "//third_party/mojo/src/mojo/public/cpp/system", | 48 "//third_party/mojo/src/mojo/public/cpp/system", |
| 51 ] | 49 ] |
| 52 | 50 |
| 53 include_dirs = [ ".." ] | 51 include_dirs = [ ".." ] |
| 54 } | 52 } |
| OLD | NEW |