| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("glm") { | 5 config("glm") { |
| 6 include_dirs = [ "//third_party/glm" ] | 6 include_dirs = [ "//third_party/glm" ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("vfx") { | 9 source_set("vfx") { |
| 10 sources = [ | 10 sources = [ |
| 11 "color_program.cc", | 11 "color_program.cc", |
| 12 "color_program.h", | 12 "color_program.h", |
| 13 "element_array_buffer.h", | 13 "element_array_buffer.h", |
| 14 "program.cc", | 14 "program.cc", |
| 15 "program.h", | 15 "program.h", |
| 16 "shader.cc", | 16 "shader.cc", |
| 17 "shader.h", | 17 "shader.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 public_configs = [ ":glm" ] | 20 public_configs = [ ":glm" ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//mojo/public/c/gpu", | 24 "//mojo/public/c:gpu", |
| 25 ] | 25 ] |
| 26 } | 26 } |
| OLD | NEW |