| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'type': '<(component)', | 48 'type': '<(component)', |
| 49 'defines': [ | 49 'defines': [ |
| 50 'MOJO_COMMON_IMPLEMENTATION', | 50 'MOJO_COMMON_IMPLEMENTATION', |
| 51 ], | 51 ], |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 '../base/base.gyp:base', | 53 '../base/base.gyp:base', |
| 54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 54 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 55 'mojo_system', | 55 'mojo_system', |
| 56 ], | 56 ], |
| 57 'sources': [ | 57 'sources': [ |
| 58 'common/bindings_support_impl.cc', |
| 59 'common/bindings_support_impl.h', |
| 58 'common/handle_watcher.cc', | 60 'common/handle_watcher.cc', |
| 59 'common/handle_watcher.h', | 61 'common/handle_watcher.h', |
| 60 'common/scoped_message_pipe.cc', | 62 'common/scoped_message_pipe.cc', |
| 61 'common/scoped_message_pipe.h', | 63 'common/scoped_message_pipe.h', |
| 62 ], | 64 ], |
| 63 'conditions': [ | 65 'conditions': [ |
| 64 ['OS == "win"', { | 66 ['OS == "win"', { |
| 65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 66 'msvs_disabled_warnings': [ | 68 'msvs_disabled_warnings': [ |
| 67 4267, | 69 4267, |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 'system/waiter_unittest.cc', | 198 'system/waiter_unittest.cc', |
| 197 ], | 199 ], |
| 198 }, | 200 }, |
| 199 { | 201 { |
| 200 'target_name': 'mojo_shell_lib', | 202 'target_name': 'mojo_shell_lib', |
| 201 'type': 'static_library', | 203 'type': 'static_library', |
| 202 'dependencies': [ | 204 'dependencies': [ |
| 203 '../base/base.gyp:base', | 205 '../base/base.gyp:base', |
| 204 '../net/net.gyp:net', | 206 '../net/net.gyp:net', |
| 205 '../url/url.gyp:url_lib', | 207 '../url/url.gyp:url_lib', |
| 208 'mojo_bindings', |
| 206 'mojo_system', | 209 'mojo_system', |
| 207 'mojo_utility', | 210 'mojo_utility', |
| 208 'native_viewport', | 211 'native_viewport', |
| 209 ], | 212 ], |
| 210 'sources': [ | 213 'sources': [ |
| 211 'shell/app_container.cc', | 214 'shell/app_container.cc', |
| 212 'shell/app_container.h', | 215 'shell/app_container.h', |
| 213 'shell/context.cc', | 216 'shell/context.cc', |
| 214 'shell/context.h', | 217 'shell/context.h', |
| 215 'shell/loader.cc', | 218 'shell/loader.cc', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 236 }], | 239 }], |
| 237 ], | 240 ], |
| 238 }, | 241 }, |
| 239 { | 242 { |
| 240 'target_name': 'mojo_shell', | 243 'target_name': 'mojo_shell', |
| 241 'type': 'executable', | 244 'type': 'executable', |
| 242 'dependencies': [ | 245 'dependencies': [ |
| 243 '../base/base.gyp:base', | 246 '../base/base.gyp:base', |
| 244 '../ui/gl/gl.gyp:gl', | 247 '../ui/gl/gl.gyp:gl', |
| 245 '../url/url.gyp:url_lib', | 248 '../url/url.gyp:url_lib', |
| 249 'mojo_common_lib', |
| 246 'mojo_shell_lib', | 250 'mojo_shell_lib', |
| 247 'mojo_system', | 251 'mojo_system', |
| 248 ], | 252 ], |
| 249 'sources': [ | 253 'sources': [ |
| 250 'shell/desktop/mojo_main.cc', | 254 'shell/desktop/mojo_main.cc', |
| 251 ], | 255 ], |
| 252 'conditions': [ | 256 'conditions': [ |
| 253 ['OS == "win"', { | 257 ['OS == "win"', { |
| 254 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 258 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 255 'msvs_disabled_warnings': [ | 259 'msvs_disabled_warnings': [ |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 454 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 451 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 455 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 452 'native_lib_target': 'libmojo_shell', | 456 'native_lib_target': 'libmojo_shell', |
| 453 }, | 457 }, |
| 454 'includes': [ '../build/java_apk.gypi' ], | 458 'includes': [ '../build/java_apk.gypi' ], |
| 455 } | 459 } |
| 456 ], | 460 ], |
| 457 }], | 461 }], |
| 458 ], | 462 ], |
| 459 } | 463 } |
| OLD | NEW |