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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'type': '<(component)', | 60 'type': '<(component)', |
61 'defines': [ | 61 'defines': [ |
62 'MOJO_COMMON_IMPLEMENTATION', | 62 'MOJO_COMMON_IMPLEMENTATION', |
63 ], | 63 ], |
64 'dependencies': [ | 64 'dependencies': [ |
65 '../base/base.gyp:base', | 65 '../base/base.gyp:base', |
66 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 66 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
67 'mojo_system', | 67 'mojo_system', |
68 ], | 68 ], |
69 'sources': [ | 69 'sources': [ |
| 70 'common/bindings_support_impl.cc', |
| 71 'common/bindings_support_impl.h', |
70 'common/handle_watcher.cc', | 72 'common/handle_watcher.cc', |
71 'common/handle_watcher.h', | 73 'common/handle_watcher.h', |
72 'common/scoped_message_pipe.cc', | 74 'common/scoped_message_pipe.cc', |
73 'common/scoped_message_pipe.h', | 75 'common/scoped_message_pipe.h', |
74 ], | 76 ], |
75 'conditions': [ | 77 'conditions': [ |
76 ['OS == "win"', { | 78 ['OS == "win"', { |
77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
78 'msvs_disabled_warnings': [ | 80 'msvs_disabled_warnings': [ |
79 4267, | 81 4267, |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 'system/waiter_unittest.cc', | 210 'system/waiter_unittest.cc', |
209 ], | 211 ], |
210 }, | 212 }, |
211 { | 213 { |
212 'target_name': 'mojo_shell_lib', | 214 'target_name': 'mojo_shell_lib', |
213 'type': 'static_library', | 215 'type': 'static_library', |
214 'dependencies': [ | 216 'dependencies': [ |
215 '../base/base.gyp:base', | 217 '../base/base.gyp:base', |
216 '../net/net.gyp:net', | 218 '../net/net.gyp:net', |
217 '../url/url.gyp:url_lib', | 219 '../url/url.gyp:url_lib', |
| 220 'mojo_bindings', |
218 'mojo_system', | 221 'mojo_system', |
219 'mojo_utility', | 222 'mojo_utility', |
220 'native_viewport', | 223 'native_viewport', |
221 ], | 224 ], |
222 'sources': [ | 225 'sources': [ |
223 'shell/app_container.cc', | 226 'shell/app_container.cc', |
224 'shell/app_container.h', | 227 'shell/app_container.h', |
225 'shell/context.cc', | 228 'shell/context.cc', |
226 'shell/context.h', | 229 'shell/context.h', |
227 'shell/loader.cc', | 230 'shell/loader.cc', |
(...skipping 20 matching lines...) Expand all Loading... |
248 }], | 251 }], |
249 ], | 252 ], |
250 }, | 253 }, |
251 { | 254 { |
252 'target_name': 'mojo_shell', | 255 'target_name': 'mojo_shell', |
253 'type': 'executable', | 256 'type': 'executable', |
254 'dependencies': [ | 257 'dependencies': [ |
255 '../base/base.gyp:base', | 258 '../base/base.gyp:base', |
256 '../ui/gl/gl.gyp:gl', | 259 '../ui/gl/gl.gyp:gl', |
257 '../url/url.gyp:url_lib', | 260 '../url/url.gyp:url_lib', |
| 261 'mojo_common_lib', |
258 'mojo_shell_lib', | 262 'mojo_shell_lib', |
259 'mojo_system', | 263 'mojo_system', |
260 ], | 264 ], |
261 'sources': [ | 265 'sources': [ |
262 'shell/desktop/mojo_main.cc', | 266 'shell/desktop/mojo_main.cc', |
263 ], | 267 ], |
264 'conditions': [ | 268 'conditions': [ |
265 ['OS == "win"', { | 269 ['OS == "win"', { |
266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
267 'msvs_disabled_warnings': [ | 271 'msvs_disabled_warnings': [ |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 'includes': [ '../build/jni_generator.gypi' ], | 436 'includes': [ '../build/jni_generator.gypi' ], |
433 }, | 437 }, |
434 { | 438 { |
435 'target_name': 'libmojo_shell', | 439 'target_name': 'libmojo_shell', |
436 'type': 'shared_library', | 440 'type': 'shared_library', |
437 'dependencies': [ | 441 'dependencies': [ |
438 '../base/base.gyp:base', | 442 '../base/base.gyp:base', |
439 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 443 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
440 '../ui/gfx/gfx.gyp:gfx', | 444 '../ui/gfx/gfx.gyp:gfx', |
441 '../ui/gl/gl.gyp:gl', | 445 '../ui/gl/gl.gyp:gl', |
| 446 'mojo_common_lib', |
442 'mojo_jni_headers', | 447 'mojo_jni_headers', |
443 'mojo_shell_lib', | 448 'mojo_shell_lib', |
444 ], | 449 ], |
445 'sources': [ | 450 'sources': [ |
446 'shell/android/library_loader.cc', | 451 'shell/android/library_loader.cc', |
447 'shell/android/mojo_main.cc', | 452 'shell/android/mojo_main.cc', |
448 'shell/android/mojo_main.h', | 453 'shell/android/mojo_main.h', |
449 ], | 454 ], |
450 }, | 455 }, |
451 { | 456 { |
(...skipping 10 matching lines...) Expand all Loading... |
462 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 467 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
463 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 468 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
464 'native_lib_target': 'libmojo_shell', | 469 'native_lib_target': 'libmojo_shell', |
465 }, | 470 }, |
466 'includes': [ '../build/java_apk.gypi' ], | 471 'includes': [ '../build/java_apk.gypi' ], |
467 } | 472 } |
468 ], | 473 ], |
469 }], | 474 }], |
470 ], | 475 ], |
471 } | 476 } |
OLD | NEW |