Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: ppapi/examples/2d/BUILD.gn

Issue 921993002: Implement the rest of the PPAPI examples in the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ppapi_examples
Patch Set: Fix GYP Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ppapi/examples/BUILD.gn » ('j') | ppapi/examples/audio/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/examples/BUILD.gn » ('j') | ppapi/examples/audio/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698