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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 298563003: Move geometry types to a more central location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'mojo_sample_app', 8 'target_name': 'mojo_sample_app',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'dependencies': [ 10 'dependencies': [
11 # TODO(darin): we should not be linking against these libraries! 11 # TODO(darin): we should not be linking against these libraries!
12 '../ui/events/events.gyp:events', 12 '../ui/events/events.gyp:events',
13 '../ui/gfx/gfx.gyp:gfx_geometry', 13 '../ui/gfx/gfx.gyp:gfx_geometry',
14 'mojo_cpp_bindings', 14 'mojo_cpp_bindings',
15 'mojo_environment_standalone', 15 'mojo_environment_standalone',
16 'mojo_geometry_bindings',
16 'mojo_gles2', 17 'mojo_gles2',
17 'mojo_native_viewport_bindings', 18 'mojo_native_viewport_bindings',
18 'mojo_shell_client', 19 'mojo_shell_client',
19 'mojo_system', 20 'mojo_system',
20 'mojo_utility', 21 'mojo_utility',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 'examples/sample_app/gles2_client_impl.cc', 24 'examples/sample_app/gles2_client_impl.cc',
24 'examples/sample_app/gles2_client_impl.cc', 25 'examples/sample_app/gles2_client_impl.cc',
25 'examples/sample_app/sample_app.cc', 26 'examples/sample_app/sample_app.cc',
(...skipping 12 matching lines...) Expand all
38 'target_name': 'mojo_compositor_app', 39 'target_name': 'mojo_compositor_app',
39 'type': 'shared_library', 40 'type': 'shared_library',
40 'dependencies': [ 41 'dependencies': [
41 '../base/base.gyp:base', 42 '../base/base.gyp:base',
42 '../cc/cc.gyp:cc', 43 '../cc/cc.gyp:cc',
43 '../ui/gfx/gfx.gyp:gfx', 44 '../ui/gfx/gfx.gyp:gfx',
44 '../ui/gfx/gfx.gyp:gfx_geometry', 45 '../ui/gfx/gfx.gyp:gfx_geometry',
45 'mojo_cc_support', 46 'mojo_cc_support',
46 'mojo_common_lib', 47 'mojo_common_lib',
47 'mojo_environment_chromium', 48 'mojo_environment_chromium',
49 'mojo_geometry_bindings',
50 'mojo_geometry_lib',
48 'mojo_gles2', 51 'mojo_gles2',
49 'mojo_native_viewport_bindings', 52 'mojo_native_viewport_bindings',
50 'mojo_shell_client', 53 'mojo_shell_client',
51 'mojo_system_impl', 54 'mojo_system_impl',
52 ], 55 ],
53 'sources': [ 56 'sources': [
54 'examples/compositor_app/compositor_app.cc', 57 'examples/compositor_app/compositor_app.cc',
55 'examples/compositor_app/compositor_host.cc', 58 'examples/compositor_app/compositor_host.cc',
56 'examples/compositor_app/compositor_host.h', 59 'examples/compositor_app/compositor_host.h',
57 ], 60 ],
58 }, 61 },
59 { 62 {
60 'target_name': 'package_mojo_compositor_app', 63 'target_name': 'package_mojo_compositor_app',
61 'variables': { 64 'variables': {
62 'app_name': 'mojo_compositor_app', 65 'app_name': 'mojo_compositor_app',
63 }, 66 },
64 'includes': [ 'build/package_app.gypi' ], 67 'includes': [ 'build/package_app.gypi' ],
65 }, 68 },
66 { 69 {
67 'target_name': 'mojo_pepper_container_app', 70 'target_name': 'mojo_pepper_container_app',
68 'type': 'shared_library', 71 'type': 'shared_library',
69 'dependencies': [ 72 'dependencies': [
70 '../base/base.gyp:base', 73 '../base/base.gyp:base',
71 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 74 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
72 '../gpu/gpu.gyp:command_buffer_common', 75 '../gpu/gpu.gyp:command_buffer_common',
73 '../ppapi/ppapi.gyp:ppapi_c', 76 '../ppapi/ppapi.gyp:ppapi_c',
74 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', 77 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube',
75 'mojo_common_lib', 78 'mojo_common_lib',
76 'mojo_environment_chromium', 79 'mojo_environment_chromium',
80 'mojo_geometry_bindings',
77 'mojo_gles2', 81 'mojo_gles2',
78 'mojo_native_viewport_bindings', 82 'mojo_native_viewport_bindings',
79 'mojo_shell_client', 83 'mojo_shell_client',
80 'mojo_system_impl', 84 'mojo_system_impl',
81 ], 85 ],
82 'defines': [ 86 'defines': [
83 # We don't really want to export. We could change how 87 # We don't really want to export. We could change how
84 # ppapi_{shared,thunk}_export.h are defined to avoid this. 88 # ppapi_{shared,thunk}_export.h are defined to avoid this.
85 'PPAPI_SHARED_IMPLEMENTATION', 89 'PPAPI_SHARED_IMPLEMENTATION',
86 'PPAPI_THUNK_IMPLEMENTATION', 90 'PPAPI_THUNK_IMPLEMENTATION',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'dependencies': [ 170 'dependencies': [
167 '../base/base.gyp:base', 171 '../base/base.gyp:base',
168 '../ui/aura/aura.gyp:aura', 172 '../ui/aura/aura.gyp:aura',
169 '../ui/base/ui_base.gyp:ui_base', 173 '../ui/base/ui_base.gyp:ui_base',
170 '../ui/gfx/gfx.gyp:gfx', 174 '../ui/gfx/gfx.gyp:gfx',
171 '../ui/gfx/gfx.gyp:gfx_geometry', 175 '../ui/gfx/gfx.gyp:gfx_geometry',
172 'mojo_aura_support', 176 'mojo_aura_support',
173 'mojo_cc_support', 177 'mojo_cc_support',
174 'mojo_common_lib', 178 'mojo_common_lib',
175 'mojo_environment_chromium', 179 'mojo_environment_chromium',
180 'mojo_geometry_bindings',
181 'mojo_geometry_lib',
176 'mojo_gles2', 182 'mojo_gles2',
177 'mojo_shell_client', 183 'mojo_shell_client',
178 'mojo_system_impl' 184 'mojo_system_impl'
179 ], 185 ],
180 'sources': [ 186 'sources': [
181 'examples/aura_demo/aura_demo.cc', 187 'examples/aura_demo/aura_demo.cc',
182 ], 188 ],
183 }, 189 },
184 { 190 {
185 'target_name': 'package_mojo_aura_demo', 191 'target_name': 'package_mojo_aura_demo',
(...skipping 30 matching lines...) Expand all
216 '../ui/aura/aura.gyp:aura_test_support', 222 '../ui/aura/aura.gyp:aura_test_support',
217 '../ui/base/ui_base.gyp:ui_base', 223 '../ui/base/ui_base.gyp:ui_base',
218 '../ui/gfx/gfx.gyp:gfx', 224 '../ui/gfx/gfx.gyp:gfx',
219 '../ui/gfx/gfx.gyp:gfx_geometry', 225 '../ui/gfx/gfx.gyp:gfx_geometry',
220 '../ui/views/views.gyp:views', 226 '../ui/views/views.gyp:views',
221 '../ui/wm/wm.gyp:wm', 227 '../ui/wm/wm.gyp:wm',
222 '../url/url.gyp:url_lib', 228 '../url/url.gyp:url_lib',
223 'mojo_aura_support', 229 'mojo_aura_support',
224 'mojo_common_lib', 230 'mojo_common_lib',
225 'mojo_environment_chromium', 231 'mojo_environment_chromium',
232 'mojo_geometry_bindings',
233 'mojo_geometry_lib',
226 'mojo_gles2', 234 'mojo_gles2',
227 'mojo_launcher_bindings', 235 'mojo_launcher_bindings',
228 'mojo_shell_client', 236 'mojo_shell_client',
229 'mojo_system_impl', 237 'mojo_system_impl',
230 ], 238 ],
231 'sources': [ 239 'sources': [
232 'examples/launcher/launcher.cc', 240 'examples/launcher/launcher.cc',
233 ], 241 ],
234 }, 242 },
235 { 243 {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 'mojo_utility', 285 'mojo_utility',
278 ], 286 ],
279 'sources': [ 287 'sources': [
280 'examples/dbus_echo/dbus_echo_app.cc', 288 'examples/dbus_echo/dbus_echo_app.cc',
281 ], 289 ],
282 }, 290 },
283 ], 291 ],
284 }], 292 }],
285 ], 293 ],
286 } 294 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698