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

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

Issue 731893002: Add a simple scheduler for animation frames (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix math 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
« no previous file with comments | « no previous file | examples/ganesh_app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 mojo_native_application("ganesh_app") { 7 mojo_native_application("ganesh_app") {
8 sources = [ 8 sources = [
9 "ganesh_app.cc", 9 "ganesh_app.cc",
10 "ganesh_context.cc", 10 "ganesh_context.cc",
11 "ganesh_context.h", 11 "ganesh_context.h",
12 "ganesh_texture.cc", 12 "ganesh_texture.cc",
13 "ganesh_texture.h", 13 "ganesh_texture.h",
14 "ganesh_view.cc", 14 "ganesh_view.cc",
15 "ganesh_view.h", 15 "ganesh_view.h",
16 "mojo_gl_context.cc", 16 "mojo_gl_context.cc",
17 "mojo_gl_context.h", 17 "mojo_gl_context.h",
18 "texture_uploader.cc", 18 "texture_uploader.cc",
19 "texture_uploader.h", 19 "texture_uploader.h",
20 ] 20 ]
21 21
22 deps = [ 22 deps = [
23 "//base", 23 "//base",
24 "//gpu/command_buffer/client:gles2_interface", 24 "//gpu/command_buffer/client:gles2_interface",
25 "//gpu/command_buffer/common", 25 "//gpu/command_buffer/common",
26 "//gpu/skia_bindings", 26 "//gpu/skia_bindings",
27 "//mc/scheduler",
27 "//mojo/application", 28 "//mojo/application",
28 "//mojo/common", 29 "//mojo/common",
29 "//mojo/converters/geometry", 30 "//mojo/converters/geometry",
30 "//mojo/converters/surfaces", 31 "//mojo/converters/surfaces",
31 "//mojo/environment:chromium", 32 "//mojo/environment:chromium",
32 "//mojo/public/c/system:for_shared_library", 33 "//mojo/public/c/system:for_shared_library",
33 "//mojo/public/cpp/bindings", 34 "//mojo/public/cpp/bindings",
34 "//mojo/public/cpp/environment", 35 "//mojo/public/cpp/environment",
35 "//mojo/public/cpp/system", 36 "//mojo/public/cpp/system",
36 "//mojo/public/cpp/utility", 37 "//mojo/public/cpp/utility",
37 "//mojo/public/gles2:for_shared_library", 38 "//mojo/public/gles2:for_shared_library",
38 "//mojo/services/public/cpp/surfaces", 39 "//mojo/services/public/cpp/surfaces",
39 "//mojo/services/public/cpp/view_manager", 40 "//mojo/services/public/cpp/view_manager",
40 "//mojo/services/public/interfaces/geometry", 41 "//mojo/services/public/interfaces/geometry",
41 "//mojo/services/public/interfaces/gpu", 42 "//mojo/services/public/interfaces/gpu",
42 "//mojo/services/public/interfaces/surfaces", 43 "//mojo/services/public/interfaces/surfaces",
43 "//mojo/services/public/interfaces/surfaces:surface_id", 44 "//mojo/services/public/interfaces/surfaces:surface_id",
44 "//skia", 45 "//skia",
45 "//ui/gfx", 46 "//ui/gfx",
46 "//ui/gfx/geometry", 47 "//ui/gfx/geometry",
47 ] 48 ]
48 } 49 }
OLDNEW
« no previous file with comments | « no previous file | examples/ganesh_app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698