OLD | NEW |
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': [ |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ], | 90 ], |
91 'export_dependent_settings': [ | 91 'export_dependent_settings': [ |
92 'mojo_hello_world_bindings', | 92 'mojo_hello_world_bindings', |
93 ], | 93 ], |
94 'sources': [ | 94 'sources': [ |
95 'examples/hello_world_service/hello_world_service_impl.cc', | 95 'examples/hello_world_service/hello_world_service_impl.cc', |
96 'examples/hello_world_service/hello_world_service_impl.h', | 96 'examples/hello_world_service/hello_world_service_impl.h', |
97 ], | 97 ], |
98 }, | 98 }, |
99 ], | 99 ], |
| 100 'conditions': [ |
| 101 ['use_aura==1', { |
| 102 'targets': [ |
| 103 { |
| 104 'target_name': 'mojo_aura_demo', |
| 105 'type': 'shared_library', |
| 106 'dependencies': [ |
| 107 '../base/base.gyp:base', |
| 108 '../cc/cc.gyp:cc', |
| 109 '../gpu/gpu.gyp:gles2_c_lib', |
| 110 '../gpu/gpu.gyp:gles2_implementation', |
| 111 '../skia/skia.gyp:skia', |
| 112 '../ui/aura/aura.gyp:aura', |
| 113 '../ui/compositor/compositor.gyp:compositor', |
| 114 '../ui/events/events.gyp:events', |
| 115 '../ui/events/events.gyp:events_base', |
| 116 '../ui/gfx/gfx.gyp:gfx', |
| 117 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 118 '../ui/gl/gl.gyp:gl', |
| 119 '../ui/ui.gyp:ui', |
| 120 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 121 'mojo_common_lib', |
| 122 'mojo_gles2', |
| 123 'mojo_gles2_bindings', |
| 124 'mojo_native_viewport_bindings', |
| 125 'mojo_shell_bindings', |
| 126 'mojo_system', |
| 127 ], |
| 128 'sources': [ |
| 129 'examples/aura_demo/aura_demo.cc', |
| 130 'examples/aura_demo/demo_context_factory.cc', |
| 131 'examples/aura_demo/demo_context_factory.h', |
| 132 'examples/aura_demo/demo_screen.cc', |
| 133 'examples/aura_demo/demo_screen.h', |
| 134 'examples/aura_demo/root_window_host_mojo.cc', |
| 135 'examples/aura_demo/root_window_host_mojo.h', |
| 136 'examples/compositor_app/gles2_client_impl.cc', |
| 137 'examples/compositor_app/gles2_client_impl.cc', |
| 138 ], |
| 139 }, |
| 140 { |
| 141 'target_name': 'package_mojo_aura_demo', |
| 142 'variables': { |
| 143 'app_name': 'mojo_aura_demo', |
| 144 }, |
| 145 'includes': [ 'build/package_app.gypi' ], |
| 146 }, |
| 147 ], |
| 148 }], |
| 149 ], |
100 } | 150 } |
OLD | NEW |