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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'examples/compositor_app/gles2_client_impl.cc', | 62 'examples/compositor_app/gles2_client_impl.cc', |
63 ], | 63 ], |
64 }, | 64 }, |
65 { | 65 { |
66 'target_name': 'package_mojo_compositor_app', | 66 'target_name': 'package_mojo_compositor_app', |
67 'variables': { | 67 'variables': { |
68 'app_name': 'mojo_compositor_app', | 68 'app_name': 'mojo_compositor_app', |
69 }, | 69 }, |
70 'includes': [ 'build/package_app.gypi' ], | 70 'includes': [ 'build/package_app.gypi' ], |
71 }, | 71 }, |
72 { | |
73 'target_name': 'mojo_hello_world_bindings', | |
74 'type': 'static_library', | |
75 'sources': [ | |
76 'examples/hello_world_service/hello_world_service.mojom', | |
77 ], | |
78 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | |
79 'export_dependent_settings': [ | |
80 'mojo_bindings', | |
81 'mojo_system', | |
82 ], | |
83 }, | |
84 { | |
85 'target_name': 'mojo_hello_world_service', | |
86 'type': 'static_library', | |
87 'dependencies': [ | |
88 '../base/base.gyp:base', | |
89 'mojo_hello_world_bindings', | |
90 ], | |
91 'export_dependent_settings': [ | |
92 'mojo_hello_world_bindings', | |
93 ], | |
94 'sources': [ | |
95 'examples/hello_world_service/hello_world_service_impl.cc', | |
96 'examples/hello_world_service/hello_world_service_impl.h', | |
97 ], | |
98 }, | |
99 ], | 72 ], |
100 } | 73 } |
OLD | NEW |