| OLD | NEW |
| 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 'includes': [ | 6 'includes': [ |
| 7 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults' : { | 9 'target_defaults' : { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'public/cpp/bindings/weak_interface_ptr_set.h', | 179 'public/cpp/bindings/weak_interface_ptr_set.h', |
| 180 # This comes from the mojo_interface_bindings_cpp_sources dependency. | 180 # This comes from the mojo_interface_bindings_cpp_sources dependency. |
| 181 '>@(mojom_generated_sources)', | 181 '>@(mojom_generated_sources)', |
| 182 ], | 182 ], |
| 183 'dependencies': [ | 183 'dependencies': [ |
| 184 '../base/base.gyp:base', | 184 '../base/base.gyp:base', |
| 185 'mojo_interface_bindings_cpp_sources', | 185 'mojo_interface_bindings_cpp_sources', |
| 186 ], | 186 ], |
| 187 }, | 187 }, |
| 188 { | 188 { |
| 189 # GN version: //mojo/message_pump |
| 190 'target_name': 'mojo_message_pump_lib', |
| 191 'type': '<(component)', |
| 192 'defines': [ |
| 193 'MOJO_MESSAGE_PUMP_IMPLEMENTATION', |
| 194 ], |
| 195 'dependencies': [ |
| 196 '../base/base.gyp:base', |
| 197 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 198 '<(mojo_system_for_component)', |
| 199 ], |
| 200 'export_dependent_settings': [ |
| 201 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 202 ], |
| 203 'sources': [ |
| 204 'message_pump/handle_watcher.cc', |
| 205 'message_pump/handle_watcher.h', |
| 206 'message_pump/message_pump_mojo.cc', |
| 207 'message_pump/message_pump_mojo.h', |
| 208 'message_pump/message_pump_mojo_handler.h', |
| 209 'message_pump/time_helper.cc', |
| 210 'message_pump/time_helper.h', |
| 211 ], |
| 212 }, |
| 213 { |
| 189 # GN version: //mojo/public/js | 214 # GN version: //mojo/public/js |
| 190 'target_name': 'mojo_js_bindings', | 215 'target_name': 'mojo_js_bindings', |
| 191 'type': 'static_library', | 216 'type': 'static_library', |
| 192 'include_dirs': [ | 217 'include_dirs': [ |
| 193 '..' | 218 '..' |
| 194 ], | 219 ], |
| 195 'sources': [ | 220 'sources': [ |
| 196 'public/js/constants.cc', | 221 'public/js/constants.cc', |
| 197 'public/js/constants.h', | 222 'public/js/constants.h', |
| 198 ], | 223 ], |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 'mojo_interface_bindings_java_sources', | 527 'mojo_interface_bindings_java_sources', |
| 503 'mojo_public_java', | 528 'mojo_public_java', |
| 504 '<(DEPTH)/base/base.gyp:base_java', | 529 '<(DEPTH)/base/base.gyp:base_java', |
| 505 ], | 530 ], |
| 506 'includes': [ '../build/java.gypi' ], | 531 'includes': [ '../build/java.gypi' ], |
| 507 }, | 532 }, |
| 508 ], | 533 ], |
| 509 }], | 534 }], |
| 510 ], | 535 ], |
| 511 } | 536 } |
| OLD | NEW |