OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//ppapi/examples/ppapi_example.gni") |
| 6 |
| 7 group("2d") { |
| 8 testonly = true |
| 9 deps = [ |
| 10 ":graphics_2d", |
| 11 ":paint_manager", |
| 12 ":scroll", |
| 13 ] |
| 14 } |
| 15 |
| 16 ppapi_example("graphics_2d") { |
| 17 output_name = "ppapi_example_graphics_2d" |
| 18 sources = [ |
| 19 "graphics_2d_example.c", |
| 20 ] |
| 21 deps = [ |
| 22 "//ppapi/c", |
| 23 ] |
| 24 } |
| 25 |
| 26 ppapi_example("paint_manager") { |
| 27 output_name = "ppapi_example_paint_manager" |
| 28 sources = [ |
| 29 "paint_manager_example.cc", |
| 30 ] |
| 31 deps = [ |
| 32 "//ppapi/cpp", |
| 33 ] |
| 34 } |
| 35 |
| 36 ppapi_example("scroll") { |
| 37 output_name = "ppapi_example_scroll" |
| 38 sources = [ |
| 39 "scroll.cc", |
| 40 ] |
| 41 deps = [ |
| 42 "//ppapi/cpp", |
| 43 ] |
| 44 } |
OLD | NEW |