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

Side by Side Diff: mojo/mojo_public.gypi

Issue 423963004: First cut at "content handling" support in Mojo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Create a dedicated demo app instead of using wget Created 6 years, 4 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //mojo/public/c/system 8 # GN version: //mojo/public/c/system
9 'target_name': 'mojo_system', 9 'target_name': 'mojo_system',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 'include_dirs': [ 162 'include_dirs': [
163 '..', 163 '..',
164 ], 164 ],
165 }, 165 },
166 { 166 {
167 # GN version: //mojo/public/interfaces/service_provider:service_provider 167 # GN version: //mojo/public/interfaces/service_provider:service_provider
168 'target_name': 'mojo_service_provider_bindings', 168 'target_name': 'mojo_service_provider_bindings',
169 'type': 'static_library', 169 'type': 'static_library',
170 'sources': [ 170 'sources': [
171 'public/interfaces/service_provider/service_provider.mojom', 171 'public/interfaces/service_provider/service_provider.mojom',
172 'public/interfaces/service_provider/content_handler.mojom',
172 ], 173 ],
173 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 174 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
174 'dependencies': [ 175 'dependencies': [
175 'mojo_cpp_bindings', 176 'mojo_cpp_bindings',
176 ], 177 ],
177 'export_dependent_settings': [ 178 'export_dependent_settings': [
178 'mojo_cpp_bindings', 179 'mojo_cpp_bindings',
179 ], 180 ],
180 }, 181 },
181 { 182 {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 }, 223 },
223 'dependencies': [ 224 'dependencies': [
224 'mojo_public_java', 225 'mojo_public_java',
225 ], 226 ],
226 'includes': [ '../build/java.gypi' ], 227 'includes': [ '../build/java.gypi' ],
227 }, 228 },
228 ], 229 ],
229 }], 230 }],
230 ], 231 ],
231 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698