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

Side by Side Diff: mojo/mojo_public.gypi

Issue 380413003: Mojo: Use InterfaceFactory<Interface> for service registration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix message loop destruction order Created 6 years, 5 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'mojo_cpp_bindings', 178 'mojo_cpp_bindings',
179 ], 179 ],
180 }, 180 },
181 { 181 {
182 # GN version: //mojo/public/cpp/application 182 # GN version: //mojo/public/cpp/application
183 'target_name': 'mojo_application', 183 'target_name': 'mojo_application',
184 'type': 'static_library', 184 'type': 'static_library',
185 'sources': [ 185 'sources': [
186 'public/cpp/application/application_impl.h', 186 'public/cpp/application/application_impl.h',
187 'public/cpp/application/connect.h', 187 'public/cpp/application/connect.h',
188 'public/cpp/application/lib/application_connection.cc',
189 'public/cpp/application/lib/application_delegate.cc',
188 'public/cpp/application/lib/application_impl.cc', 190 'public/cpp/application/lib/application_impl.cc',
189 'public/cpp/application/lib/service_connector.cc', 191 'public/cpp/application/lib/service_connector.cc',
190 'public/cpp/application/lib/service_connector.h', 192 'public/cpp/application/lib/service_connector.h',
191 'public/cpp/application/lib/application_connection.cc',
192 'public/cpp/application/lib/application_delegate.cc',
193 'public/cpp/application/lib/service_registry.cc', 193 'public/cpp/application/lib/service_registry.cc',
194 'public/cpp/application/lib/service_registry.h', 194 'public/cpp/application/lib/service_registry.h',
195 ], 195 ],
196 'dependencies': [ 196 'dependencies': [
197 'mojo_service_provider_bindings', 197 'mojo_service_provider_bindings',
198 ], 198 ],
199 'export_dependent_settings': [ 199 'export_dependent_settings': [
200 'mojo_service_provider_bindings', 200 'mojo_service_provider_bindings',
201 ], 201 ],
202 }, 202 },
203 ], 203 ],
204 'conditions': [ 204 'conditions': [
205 ['OS == "android"', { 205 ['OS == "android"', {
206 'targets': [ 206 'targets': [
207 { 207 {
208 # GN version: //mojo/public/java 208 # GN version: //mojo/public/java
209 'target_name': 'mojo_public_java', 209 'target_name': 'mojo_public_java',
210 'type': 'none', 210 'type': 'none',
211 'variables': { 211 'variables': {
212 'java_in_dir': 'public/java', 212 'java_in_dir': 'public/java',
213 }, 213 },
214 'includes': [ '../build/java.gypi' ], 214 'includes': [ '../build/java.gypi' ],
215 }, 215 },
216 ], 216 ],
217 }], 217 }],
218 ], 218 ],
219 } 219 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698