Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / ppapi / examples / 2d / BUILD.gn
blob94b8ed69b8bccc372d903d584d84a55169a53e57
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.
5 import("//ppapi/examples/ppapi_example.gni")
7 group("2d") {
8   testonly = true
9   deps = [
10     ":graphics_2d",
11     ":paint_manager",
12     ":scroll",
13   ]
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   ]
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   ]
36 ppapi_example("scroll") {
37   output_name = "ppapi_example_scroll"
38   sources = [
39     "scroll.cc",
40   ]
41   deps = [
42     "//ppapi/cpp",
43   ]