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

Side by Side Diff: examples/ganesh_app/BUILD.gn

Issue 728593003: Add a sample app that draws with Ganesh (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
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 # GYP version: mojo/mojo_services.gypi:mojo_surfaces_service 5 shared_library("ganesh_app") {
6 shared_library("surfaces") {
7 output_name = "surfaces_service"
8 sources = [ 6 sources = [
9 "surfaces_impl.cc", 7 "ganesh_app.cc",
10 "surfaces_impl.h", 8 "painter.cc",
11 "surfaces_service_application.cc", 9 "painter.h",
12 "surfaces_service_application.h",
13 "surfaces_service_impl.cc",
14 "surfaces_service_impl.h",
15 ] 10 ]
16 11
17 deps = [ 12 deps = [
18 "//base", 13 "//base",
19 "//cc", 14 "//cc",
20 "//cc/surfaces", 15 "//cc/surfaces",
21 "//ui/gfx/geometry", 16 "//examples/sample_app:spinning_cube",
jamesr 2014/11/14 00:36:42 don't need
17 "//examples/surfaces_app:bindings",
18 "//examples/surfaces_app:util",
jamesr 2014/11/14 00:36:42 don't think you're using this now (although you mi
abarth-chromium 2014/11/14 00:40:14 Looks like I'm using CreateAndAppendSimpleSharedQu
19 "//gpu/command_buffer/client:gles2_interface",
20 "//gpu/command_buffer/common",
21 "//gpu/skia_bindings",
22 "//mojo/application", 22 "//mojo/application",
23 "//mojo/cc", 23 "//mojo/common",
24 "//mojo/converters/geometry", 24 "//mojo/converters/geometry",
25 "//mojo/converters/surfaces", 25 "//mojo/converters/surfaces",
26 "//mojo/environment:chromium", 26 "//mojo/environment:chromium",
27 "//mojo/public/c/system:for_shared_library", 27 "//mojo/public/c/system:for_shared_library",
28 "//mojo/public/cpp/bindings",
29 "//mojo/public/cpp/environment",
30 "//mojo/public/cpp/system",
31 "//mojo/public/cpp/utility",
28 "//mojo/public/gles2:for_shared_library", 32 "//mojo/public/gles2:for_shared_library",
29 "//mojo/services/public/interfaces/geometry", 33 "//mojo/services/public/interfaces/geometry",
30 "//mojo/services/public/interfaces/gpu", 34 "//mojo/services/public/interfaces/gpu",
35 "//mojo/services/public/interfaces/native_viewport",
jamesr 2014/11/14 00:36:42 not used
31 "//mojo/services/public/interfaces/surfaces", 36 "//mojo/services/public/interfaces/surfaces",
37 "//mojo/services/public/interfaces/surfaces:surface_id",
38 "//skia",
39 "//ui/gfx",
40 "//ui/gfx/geometry",
32 ] 41 ]
33 } 42 }
OLDNEW
« no previous file with comments | « examples/BUILD.gn ('k') | examples/ganesh_app/DEPS » ('j') | examples/ganesh_app/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698