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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'mojo_apps.gypi', | 10 'mojo_apps.gypi', |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 { | 214 { |
215 'target_name': 'mojo_shell_lib', | 215 'target_name': 'mojo_shell_lib', |
216 'type': 'static_library', | 216 'type': 'static_library', |
217 'dependencies': [ | 217 'dependencies': [ |
218 '../base/base.gyp:base', | 218 '../base/base.gyp:base', |
219 '../net/net.gyp:net', | 219 '../net/net.gyp:net', |
220 '../url/url.gyp:url_lib', | 220 '../url/url.gyp:url_lib', |
221 'mojo_bindings', | 221 'mojo_bindings', |
222 'mojo_system', | 222 'mojo_system', |
223 'mojo_native_viewport_service', | 223 'mojo_native_viewport_service', |
| 224 'shell_bindings', |
224 ], | 225 ], |
225 'sources': [ | 226 'sources': [ |
226 'shell/app_container.cc', | |
227 'shell/app_container.h', | |
228 'shell/context.cc', | 227 'shell/context.cc', |
229 'shell/context.h', | 228 'shell/context.h', |
230 'shell/init.cc', | 229 'shell/init.cc', |
231 'shell/init.h', | 230 'shell/init.h', |
232 'shell/loader.cc', | 231 'shell/loader.cc', |
233 'shell/loader.h', | 232 'shell/loader.h', |
234 'shell/network_delegate.cc', | 233 'shell/network_delegate.cc', |
235 'shell/network_delegate.h', | 234 'shell/network_delegate.h', |
236 'shell/run.cc', | 235 'shell/run.cc', |
237 'shell/run.h', | 236 'shell/run.h', |
238 'shell/storage.cc', | 237 'shell/storage.cc', |
239 'shell/storage.h', | 238 'shell/storage.h', |
| 239 'shell/service_manager.cc', |
| 240 'shell/service_manager.h', |
240 'shell/switches.cc', | 241 'shell/switches.cc', |
241 'shell/switches.h', | 242 'shell/switches.h', |
242 'shell/task_runners.cc', | 243 'shell/task_runners.cc', |
243 'shell/task_runners.h', | 244 'shell/task_runners.h', |
244 'shell/url_request_context_getter.cc', | 245 'shell/url_request_context_getter.cc', |
245 'shell/url_request_context_getter.h', | 246 'shell/url_request_context_getter.h', |
246 ], | 247 ], |
247 'conditions': [ | 248 'conditions': [ |
248 ['OS == "win"', { | 249 ['OS == "win"', { |
249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 250 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
250 'msvs_disabled_warnings': [ | 251 'msvs_disabled_warnings': [ |
251 4267, | 252 4267, |
252 ], | 253 ], |
253 }], | 254 }], |
254 ], | 255 ], |
255 }, | 256 }, |
256 { | 257 { |
| 258 'target_name': 'shell_bindings', |
| 259 'type': 'static_library', |
| 260 'sources': [ |
| 261 'shell/shell.mojom', |
| 262 ], |
| 263 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 264 'export_dependent_settings': [ |
| 265 'mojo_bindings', |
| 266 'mojo_system', |
| 267 ], |
| 268 }, |
| 269 { |
257 'target_name': 'mojo_shell', | 270 'target_name': 'mojo_shell', |
258 'type': 'executable', | 271 'type': 'executable', |
259 'dependencies': [ | 272 'dependencies': [ |
260 '../base/base.gyp:base', | 273 '../base/base.gyp:base', |
261 '../ui/gl/gl.gyp:gl', | 274 '../ui/gl/gl.gyp:gl', |
262 '../url/url.gyp:url_lib', | 275 '../url/url.gyp:url_lib', |
263 'mojo_common_lib', | 276 'mojo_common_lib', |
264 'mojo_shell_lib', | 277 'mojo_shell_lib', |
265 'mojo_system', | 278 'mojo_system', |
266 ], | 279 ], |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 365 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
353 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 366 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
354 'native_lib_target': 'libmojo_shell', | 367 'native_lib_target': 'libmojo_shell', |
355 }, | 368 }, |
356 'includes': [ '../build/java_apk.gypi' ], | 369 'includes': [ '../build/java_apk.gypi' ], |
357 } | 370 } |
358 ], | 371 ], |
359 }], | 372 }], |
360 ], | 373 ], |
361 } | 374 } |
OLD | NEW |