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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 125773002: Mojo: Remove unused hello_world_service code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include GYP changes Created 6 years, 11 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') | no next file » | 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': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698